"""Stuff to parse AIFF-C and AIFF files.Unless explicitly stated otherwise, the description below is trueboth for AIFF-C files and AIFF files.An AIFF-C file has the following structure.+-----------------+| FORM |+-----------------+| <size> |+----+------------+| | AIFC || +------------+| | <chunks> || | . || | . || | . |+----+------------+An AIFF file has the string "AIFF" instead of "AIFC".A chunk consists of an identifier (4 bytes) followed by a size (4 bytes,big endian order), followed by the data. The size field does not includethe size of the 8 byte header.The following chunk types are recognized.FVER<version number of AIFF-C defining document> (AIFF-C only).MARK<# of markers> (2 bytes)list of markers:<marker ID> (2 bytes, must be > 0)<position> (4 bytes)<marker name> ("pstring")COMM<# of channels> (2 bytes)<# of sound frames> (4 bytes)<size of the samples> (2 bytes)<sampling frequency> (10 bytes, IEEE 80-bit extendedfloating point)in AIFF-C files only:<compression type> (4 bytes)<human-readable version of compression type> ("pstring")SSND<offset> (4 bytes, not used by this program)<blocksize> (4 bytes, not used by this program)<sound data>A pstring consists of 1 byte length, a string of characters, and 0 or 1byte pad to make the total length even.Usage.Reading AIFF files:f = aifc.open(file, 'r')where file is either the name of a file or an open file pointer.The open file pointer must have methods read(), seek(), and close().In some types of audio files, if the setpos() method is not used,the seek() method is not necessary.This returns an instance of a class with the following public methods:getnchannels() -- returns number of audio channels (1 formono, 2 for stereo)getsampwidth() -- returns sample width in bytesgetframerate() -- returns sampling frequencygetnframes() -- returns number of audio framesgetcomptype() -- returns compression type ('NONE' for AIFF files)getcompname() -- returns human-readable version ofcompression type ('not compressed' for AIFF files)getparams() -- returns a namedtuple consisting of all of theabove in the above ordergetmarkers() -- get the list of marks in the audio file or Noneif there are no marksgetmark(id) -- get mark with the specified id (raises an errorif the mark does not exist)readframes(n) -- returns at most n frames of audiorewind() -- rewind to the beginning of the audio streamsetpos(pos) -- seek to the specified positiontell() -- return the current positionclose() -- close the instance (make it unusable)The position returned by tell(), the position given to setpos() andthe position of marks are all compatible and have nothing to do withthe actual position in the file.The close() method is called automatically when the class instanceis destroyed.Writing AIFF files:f = aifc.open(file, 'w')where file is either the name of a file or an open file pointer.The open file pointer must have methods write(), tell(), seek(), andclose().This returns an instance of a class with the following public methods:aiff() -- create an AIFF file (AIFF-C default)aifc() -- create an AIFF-C filesetnchannels(n) -- set the number of channelssetsampwidth(n) -- set the sample widthsetframerate(n) -- set the frame ratesetnframes(n) -- set the number of framessetcomptype(type, name)-- set the compression type and thehuman-readable compression typesetparams(tuple)-- set all parameters at oncesetmark(id, pos, name)-- add specified mark to the list of markstell() -- return current position in output file (usefulin combination with setmark())writeframesraw(data)-- write audio frames without pathing up thefile headerwriteframes(data)-- write audio frames and patch up the file headerclose() -- patch up the file header and close theoutput fileYou should set the parameters before the first writeframesraw orwriteframes. The total number of frames does not need to be set,but when it is set to the correct value, the header does not have tobe patched up.It is best to first set all parameters, perhaps possibly thecompression type, and then write audio frames using writeframesraw.When all frames have been written, either call writeframes(b'') orclose() to patch up the sizes in the header.Marks can be added anytime. If there are any marks, you must callclose() after all frames have been written.The close() method is called automatically when the class instanceis destroyed.When a file is opened with the extension '.aiff', an AIFF file iswritten, otherwise an AIFF-C file is written. This default can bechanged by calling aiff() or aifc() before the first writeframes orwriteframesraw."""import structimport builtinsimport warnings__all__ = ["Error", "open", "openfp"]class Error(Exception):pass_AIFC_version = 0xA2805140 # Version 1 of AIFF-Cdef _read_long(file):try:return struct.unpack('>l', file.read(4))[0]except struct.error:raise EOFError from Nonedef _read_ulong(file):try:return struct.unpack('>L', file.read(4))[0]except struct.error:raise EOFError from Nonedef _read_short(file):try:return struct.unpack('>h', file.read(2))[0]except struct.error:raise EOFError from Nonedef _read_ushort(file):try:return struct.unpack('>H', file.read(2))[0]except struct.error:raise EOFError from Nonedef _read_string(file):length = ord(file.read(1))if length == 0:data = b''else:data = file.read(length)if length & 1 == 0:dummy = file.read(1)return data_HUGE_VAL = 1.79769313486231e+308 # See <limits.h>def _read_float(f): # 10 bytesexpon = _read_short(f) # 2 bytessign = 1if expon < 0:sign = -1expon = expon + 0x8000himant = _read_ulong(f) # 4 byteslomant = _read_ulong(f) # 4 bytesif expon == himant == lomant == 0:f = 0.0elif expon == 0x7FFF:f = _HUGE_VALelse:expon = expon - 16383f = (himant * 0x100000000 + lomant) * pow(2.0, expon - 63)return sign * fdef _write_short(f, x):f.write(struct.pack('>h', x))def _write_ushort(f, x):f.write(struct.pack('>H', x))def _write_long(f, x):f.write(struct.pack('>l', x))def _write_ulong(f, x):f.write(struct.pack('>L', x))def _write_string(f, s):if len(s) > 255:raise ValueError("string exceeds maximum pstring length")f.write(struct.pack('B', len(s)))f.write(s)if len(s) & 1 == 0:f.write(b'\x00')def _write_float(f, x):import mathif x < 0:sign = 0x8000x = x * -1else:sign = 0if x == 0:expon = 0himant = 0lomant = 0else:fmant, expon = math.frexp(x)if expon > 16384 or fmant >= 1 or fmant != fmant: # Infinity or NaNexpon = sign|0x7FFFhimant = 0lomant = 0else: # Finiteexpon = expon + 16382if expon < 0: # denormalizedfmant = math.ldexp(fmant, expon)expon = 0expon = expon | signfmant = math.ldexp(fmant, 32)fsmant = math.floor(fmant)himant = int(fsmant)fmant = math.ldexp(fmant - fsmant, 32)fsmant = math.floor(fmant)lomant = int(fsmant)_write_ushort(f, expon)_write_ulong(f, himant)_write_ulong(f, lomant)from chunk import Chunkfrom collections import namedtuple_aifc_params = namedtuple('_aifc_params','nchannels sampwidth framerate nframes comptype compname')_aifc_params.nchannels.__doc__ = 'Number of audio channels (1 for mono, 2 for stereo)'_aifc_params.sampwidth.__doc__ = 'Sample width in bytes'_aifc_params.framerate.__doc__ = 'Sampling frequency'_aifc_params.nframes.__doc__ = 'Number of audio frames'_aifc_params.comptype.__doc__ = 'Compression type ("NONE" for AIFF files)'_aifc_params.compname.__doc__ = ("""\A human-readable version of the compression type('not compressed' for AIFF files)""")class Aifc_read:# Variables used in this class:## These variables are available to the user though appropriate# methods of this class:# _file -- the open file with methods read(), close(), and seek()# set through the __init__() method# _nchannels -- the number of audio channels# available through the getnchannels() method# _nframes -- the number of audio frames# available through the getnframes() method# _sampwidth -- the number of bytes per audio sample# available through the getsampwidth() method# _framerate -- the sampling frequency# available through the getframerate() method# _comptype -- the AIFF-C compression type ('NONE' if AIFF)# available through the getcomptype() method# _compname -- the human-readable AIFF-C compression type# available through the getcomptype() method# _markers -- the marks in the audio file# available through the getmarkers() and getmark()# methods# _soundpos -- the position in the audio stream# available through the tell() method, set through the# setpos() method## These variables are used internally only:# _version -- the AIFF-C version number# _decomp -- the decompressor from builtin module cl# _comm_chunk_read -- 1 iff the COMM chunk has been read# _aifc -- 1 iff reading an AIFF-C file# _ssnd_seek_needed -- 1 iff positioned correctly in audio# file for readframes()# _ssnd_chunk -- instantiation of a chunk class for the SSND chunk# _framesize -- size of one frame in the file_file = None # Set here since __del__ checks itdef initfp(self, file):self._version = 0self._convert = Noneself._markers = []self._soundpos = 0self._file = filechunk = Chunk(file)if chunk.getname() != b'FORM':raise Error('file does not start with FORM id')formdata = chunk.read(4)if formdata == b'AIFF':self._aifc = 0elif formdata == b'AIFC':self._aifc = 1else:raise Error('not an AIFF or AIFF-C file')self._comm_chunk_read = 0self._ssnd_chunk = Nonewhile 1:self._ssnd_seek_needed = 1try:chunk = Chunk(self._file)except EOFError:breakchunkname = chunk.getname()if chunkname == b'COMM':self._read_comm_chunk(chunk)self._comm_chunk_read = 1elif chunkname == b'SSND':self._ssnd_chunk = chunkdummy = chunk.read(8)self._ssnd_seek_needed = 0elif chunkname == b'FVER':self._version = _read_ulong(chunk)elif chunkname == b'MARK':self._readmark(chunk)chunk.skip()if not self._comm_chunk_read or not self._ssnd_chunk:raise Error('COMM chunk and/or SSND chunk missing')def __init__(self, f):if isinstance(f, str):file_object = builtins.open(f, 'rb')try:self.initfp(file_object)except:file_object.close()raiseelse:# assume it is an open file object alreadyself.initfp(f)def __enter__(self):return selfdef __exit__(self, *args):self.close()## User visible methods.#def getfp(self):return self._filedef rewind(self):self._ssnd_seek_needed = 1self._soundpos = 0def close(self):file = self._fileif file is not None:self._file = Nonefile.close()def tell(self):return self._soundposdef getnchannels(self):return self._nchannelsdef getnframes(self):return self._nframesdef getsampwidth(self):return self._sampwidthdef getframerate(self):return self._frameratedef getcomptype(self):return self._comptypedef getcompname(self):return self._compname## def getversion(self):## return self._versiondef getparams(self):return _aifc_params(self.getnchannels(), self.getsampwidth(),self.getframerate(), self.getnframes(),self.getcomptype(), self.getcompname())def getmarkers(self):if len(self._markers) == 0:return Nonereturn self._markersdef getmark(self, id):for marker in self._markers:if id == marker[0]:return markerraise Error('marker {0!r} does not exist'.format(id))def setpos(self, pos):if pos < 0 or pos > self._nframes:raise Error('position not in range')self._soundpos = posself._ssnd_seek_needed = 1def readframes(self, nframes):if self._ssnd_seek_needed:self._ssnd_chunk.seek(0)dummy = self._ssnd_chunk.read(8)pos = self._soundpos * self._framesizeif pos:self._ssnd_chunk.seek(pos + 8)self._ssnd_seek_needed = 0if nframes == 0:return b''data = self._ssnd_chunk.read(nframes * self._framesize)if self._convert and data:data = self._convert(data)self._soundpos = self._soundpos + len(data) // (self._nchannels* self._sampwidth)return data## Internal methods.#def _alaw2lin(self, data):import audioopreturn audioop.alaw2lin(data, 2)def _ulaw2lin(self, data):import audioopreturn audioop.ulaw2lin(data, 2)def _adpcm2lin(self, data):import audioopif not hasattr(self, '_adpcmstate'):# first timeself._adpcmstate = Nonedata, self._adpcmstate = audioop.adpcm2lin(data, 2, self._adpcmstate)return datadef _read_comm_chunk(self, chunk):self._nchannels = _read_short(chunk)self._nframes = _read_long(chunk)self._sampwidth = (_read_short(chunk) + 7) // 8self._framerate = int(_read_float(chunk))if self._sampwidth <= 0:raise Error('bad sample width')if self._nchannels <= 0:raise Error('bad # of channels')self._framesize = self._nchannels * self._sampwidthif self._aifc:#DEBUG: SGI's soundeditor produces a bad size :-(kludge = 0if chunk.chunksize == 18:kludge = 1warnings.warn('Warning: bad COMM chunk size')chunk.chunksize = 23#DEBUG endself._comptype = chunk.read(4)#DEBUG startif kludge:length = ord(chunk.file.read(1))if length & 1 == 0:length = length + 1chunk.chunksize = chunk.chunksize + lengthchunk.file.seek(-1, 1)#DEBUG endself._compname = _read_string(chunk)if self._comptype != b'NONE':if self._comptype == b'G722':self._convert = self._adpcm2linelif self._comptype in (b'ulaw', b'ULAW'):self._convert = self._ulaw2linelif self._comptype in (b'alaw', b'ALAW'):self._convert = self._alaw2linelse:raise Error('unsupported compression type')self._sampwidth = 2else:self._comptype = b'NONE'self._compname = b'not compressed'def _readmark(self, chunk):nmarkers = _read_short(chunk)# Some files appear to contain invalid counts.# Cope with this by testing for EOF.try:for i in range(nmarkers):id = _read_short(chunk)pos = _read_long(chunk)name = _read_string(chunk)if pos or name:# some files appear to have# dummy markers consisting of# a position 0 and name ''self._markers.append((id, pos, name))except EOFError:w = ('Warning: MARK chunk contains only %s marker%s instead of %s' %(len(self._markers), '' if len(self._markers) == 1 else 's',nmarkers))warnings.warn(w)class Aifc_write:# Variables used in this class:## These variables are user settable through appropriate methods# of this class:# _file -- the open file with methods write(), close(), tell(), seek()# set through the __init__() method# _comptype -- the AIFF-C compression type ('NONE' in AIFF)# set through the setcomptype() or setparams() method# _compname -- the human-readable AIFF-C compression type# set through the setcomptype() or setparams() method# _nchannels -- the number of audio channels# set through the setnchannels() or setparams() method# _sampwidth -- the number of bytes per audio sample# set through the setsampwidth() or setparams() method# _framerate -- the sampling frequency# set through the setframerate() or setparams() method# _nframes -- the number of audio frames written to the header# set through the setnframes() or setparams() method# _aifc -- whether we're writing an AIFF-C file or an AIFF file# set through the aifc() method, reset through the# aiff() method## These variables are used internally only:# _version -- the AIFF-C version number# _comp -- the compressor from builtin module cl# _nframeswritten -- the number of audio frames actually written# _datalength -- the size of the audio samples written to the header# _datawritten -- the size of the audio samples actually written_file = None # Set here since __del__ checks itdef __init__(self, f):if isinstance(f, str):file_object = builtins.open(f, 'wb')try:self.initfp(file_object)except:file_object.close()raise# treat .aiff file extensions as non-compressed audioif f.endswith('.aiff'):self._aifc = 0else:# assume it is an open file object alreadyself.initfp(f)def initfp(self, file):self._file = fileself._version = _AIFC_versionself._comptype = b'NONE'self._compname = b'not compressed'self._convert = Noneself._nchannels = 0self._sampwidth = 0self._framerate = 0self._nframes = 0self._nframeswritten = 0self._datawritten = 0self._datalength = 0self._markers = []self._marklength = 0self._aifc = 1 # AIFF-C is defaultdef __del__(self):self.close()def __enter__(self):return selfdef __exit__(self, *args):self.close()## User visible methods.#def aiff(self):if self._nframeswritten:raise Error('cannot change parameters after starting to write')self._aifc = 0def aifc(self):if self._nframeswritten:raise Error('cannot change parameters after starting to write')self._aifc = 1def setnchannels(self, nchannels):if self._nframeswritten:raise Error('cannot change parameters after starting to write')if nchannels < 1:raise Error('bad # of channels')self._nchannels = nchannelsdef getnchannels(self):if not self._nchannels:raise Error('number of channels not set')return self._nchannelsdef setsampwidth(self, sampwidth):if self._nframeswritten:raise Error('cannot change parameters after starting to write')if sampwidth < 1 or sampwidth > 4:raise Error('bad sample width')self._sampwidth = sampwidthdef getsampwidth(self):if not self._sampwidth:raise Error('sample width not set')return self._sampwidthdef setframerate(self, framerate):if self._nframeswritten:raise Error('cannot change parameters after starting to write')if framerate <= 0:raise Error('bad frame rate')self._framerate = frameratedef getframerate(self):if not self._framerate:raise Error('frame rate not set')return self._frameratedef setnframes(self, nframes):if self._nframeswritten:raise Error('cannot change parameters after starting to write')self._nframes = nframesdef getnframes(self):return self._nframeswrittendef setcomptype(self, comptype, compname):if self._nframeswritten:raise Error('cannot change parameters after starting to write')if comptype not in (b'NONE', b'ulaw', b'ULAW',b'alaw', b'ALAW', b'G722'):raise Error('unsupported compression type')self._comptype = comptypeself._compname = compnamedef getcomptype(self):return self._comptypedef getcompname(self):return self._compname## def setversion(self, version):## if self._nframeswritten:## raise Error, 'cannot change parameters after starting to write'## self._version = versiondef setparams(self, params):nchannels, sampwidth, framerate, nframes, comptype, compname = paramsif self._nframeswritten:raise Error('cannot change parameters after starting to write')if comptype not in (b'NONE', b'ulaw', b'ULAW',b'alaw', b'ALAW', b'G722'):raise Error('unsupported compression type')self.setnchannels(nchannels)self.setsampwidth(sampwidth)self.setframerate(framerate)self.setnframes(nframes)self.setcomptype(comptype, compname)def getparams(self):if not self._nchannels or not self._sampwidth or not self._framerate:raise Error('not all parameters set')return _aifc_params(self._nchannels, self._sampwidth, self._framerate,self._nframes, self._comptype, self._compname)def setmark(self, id, pos, name):if id <= 0:raise Error('marker ID must be > 0')if pos < 0:raise Error('marker position must be >= 0')if not isinstance(name, bytes):raise Error('marker name must be bytes')for i in range(len(self._markers)):if id == self._markers[i][0]:self._markers[i] = id, pos, namereturnself._markers.append((id, pos, name))def getmark(self, id):for marker in self._markers:if id == marker[0]:return markerraise Error('marker {0!r} does not exist'.format(id))def getmarkers(self):if len(self._markers) == 0:return Nonereturn self._markersdef tell(self):return self._nframeswrittendef writeframesraw(self, data):if not isinstance(data, (bytes, bytearray)):data = memoryview(data).cast('B')self._ensure_header_written(len(data))nframes = len(data) // (self._sampwidth * self._nchannels)if self._convert:data = self._convert(data)self._file.write(data)self._nframeswritten = self._nframeswritten + nframesself._datawritten = self._datawritten + len(data)def writeframes(self, data):self.writeframesraw(data)if self._nframeswritten != self._nframes or \self._datalength != self._datawritten:self._patchheader()def close(self):if self._file is None:returntry:self._ensure_header_written(0)if self._datawritten & 1:# quick pad to even sizeself._file.write(b'\x00')self._datawritten = self._datawritten + 1self._writemarkers()if self._nframeswritten != self._nframes or \self._datalength != self._datawritten or \self._marklength:self._patchheader()finally:# Prevent ref cyclesself._convert = Nonef = self._fileself._file = Nonef.close()## Internal methods.#def _lin2alaw(self, data):import audioopreturn audioop.lin2alaw(data, 2)def _lin2ulaw(self, data):import audioopreturn audioop.lin2ulaw(data, 2)def _lin2adpcm(self, data):import audioopif not hasattr(self, '_adpcmstate'):self._adpcmstate = Nonedata, self._adpcmstate = audioop.lin2adpcm(data, 2, self._adpcmstate)return datadef _ensure_header_written(self, datasize):if not self._nframeswritten:if self._comptype in (b'ULAW', b'ulaw', b'ALAW', b'alaw', b'G722'):if not self._sampwidth:self._sampwidth = 2if self._sampwidth != 2:raise Error('sample width must be 2 when compressing ''with ulaw/ULAW, alaw/ALAW or G7.22 (ADPCM)')if not self._nchannels:raise Error('# channels not specified')if not self._sampwidth:raise Error('sample width not specified')if not self._framerate:raise Error('sampling rate not specified')self._write_header(datasize)def _init_compression(self):if self._comptype == b'G722':self._convert = self._lin2adpcmelif self._comptype in (b'ulaw', b'ULAW'):self._convert = self._lin2ulawelif self._comptype in (b'alaw', b'ALAW'):self._convert = self._lin2alawdef _write_header(self, initlength):if self._aifc and self._comptype != b'NONE':self._init_compression()self._file.write(b'FORM')if not self._nframes:self._nframes = initlength // (self._nchannels * self._sampwidth)self._datalength = self._nframes * self._nchannels * self._sampwidthif self._datalength & 1:self._datalength = self._datalength + 1if self._aifc:if self._comptype in (b'ulaw', b'ULAW', b'alaw', b'ALAW'):self._datalength = self._datalength // 2if self._datalength & 1:self._datalength = self._datalength + 1elif self._comptype == b'G722':self._datalength = (self._datalength + 3) // 4if self._datalength & 1:self._datalength = self._datalength + 1try:self._form_length_pos = self._file.tell()except (AttributeError, OSError):self._form_length_pos = Nonecommlength = self._write_form_length(self._datalength)if self._aifc:self._file.write(b'AIFC')self._file.write(b'FVER')_write_ulong(self._file, 4)_write_ulong(self._file, self._version)else:self._file.write(b'AIFF')self._file.write(b'COMM')_write_ulong(self._file, commlength)_write_short(self._file, self._nchannels)if self._form_length_pos is not None:self._nframes_pos = self._file.tell()_write_ulong(self._file, self._nframes)if self._comptype in (b'ULAW', b'ulaw', b'ALAW', b'alaw', b'G722'):_write_short(self._file, 8)else:_write_short(self._file, self._sampwidth * 8)_write_float(self._file, self._framerate)if self._aifc:self._file.write(self._comptype)_write_string(self._file, self._compname)self._file.write(b'SSND')if self._form_length_pos is not None:self._ssnd_length_pos = self._file.tell()_write_ulong(self._file, self._datalength + 8)_write_ulong(self._file, 0)_write_ulong(self._file, 0)def _write_form_length(self, datalength):if self._aifc:commlength = 18 + 5 + len(self._compname)if commlength & 1:commlength = commlength + 1verslength = 12else:commlength = 18verslength = 0_write_ulong(self._file, 4 + verslength + self._marklength + \8 + commlength + 16 + datalength)return commlengthdef _patchheader(self):curpos = self._file.tell()if self._datawritten & 1:datalength = self._datawritten + 1self._file.write(b'\x00')else:datalength = self._datawrittenif datalength == self._datalength and \self._nframes == self._nframeswritten and \self._marklength == 0:self._file.seek(curpos, 0)returnself._file.seek(self._form_length_pos, 0)dummy = self._write_form_length(datalength)self._file.seek(self._nframes_pos, 0)_write_ulong(self._file, self._nframeswritten)self._file.seek(self._ssnd_length_pos, 0)_write_ulong(self._file, datalength + 8)self._file.seek(curpos, 0)self._nframes = self._nframeswrittenself._datalength = datalengthdef _writemarkers(self):if len(self._markers) == 0:returnself._file.write(b'MARK')length = 2for marker in self._markers:id, pos, name = markerlength = length + len(name) + 1 + 6if len(name) & 1 == 0:length = length + 1_write_ulong(self._file, length)self._marklength = length + 8_write_short(self._file, len(self._markers))for marker in self._markers:id, pos, name = marker_write_short(self._file, id)_write_ulong(self._file, pos)_write_string(self._file, name)def open(f, mode=None):if mode is None:if hasattr(f, 'mode'):mode = f.modeelse:mode = 'rb'if mode in ('r', 'rb'):return Aifc_read(f)elif mode in ('w', 'wb'):return Aifc_write(f)else:raise Error("mode must be 'r', 'rb', 'w', or 'wb'")def openfp(f, mode=None):warnings.warn("aifc.openfp is deprecated since Python 3.7. ""Use aifc.open instead.", DeprecationWarning, stacklevel=2)return open(f, mode=mode)if __name__ == '__main__':import sysif not sys.argv[1:]:sys.argv.append('/usr/demos/data/audio/bach.aiff')fn = sys.argv[1]with open(fn, 'r') as f:print("Reading", fn)print("nchannels =", f.getnchannels())print("nframes =", f.getnframes())print("sampwidth =", f.getsampwidth())print("framerate =", f.getframerate())print("comptype =", f.getcomptype())print("compname =", f.getcompname())if sys.argv[2:]:gn = sys.argv[2]print("Writing", gn)with open(gn, 'w') as g:g.setparams(f.getparams())while 1:data = f.readframes(1024)if not data:breakg.writeframes(data)print("Done.")
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。