diff --git a/removeads.py b/removeads.py index 64f5884..91054b3 100755 --- a/removeads.py +++ b/removeads.py @@ -537,7 +537,6 @@ def extractAllStreams(inputFile, begin, end, streams, filesPrefix, nbFrames, wid '-color_trc:v:%d' % videoID, colorTransfer, '-color_range:v:%d' % videoID, colorRange]) videoID=videoID+1 elif stream['codec_type'] == 'audio': - logger.info("Extracting %d packets of audio stream: a:%d" % (audioID,nbPackets)) sampleRate = int(stream['sample_rate']) nbChannels = int(stream['channels']) bitRate = int(stream['bit_rate']) @@ -553,6 +552,7 @@ def extractAllStreams(inputFile, begin, end, streams, filesPrefix, nbFrames, wid if packetDuration == None: return None + logger.info("Extracting %d packets of audio stream: a:%d" % (nbPackets, audioID)) tmpname = '%s-%d.pcm' % (filesPrefix,audioID) soundBytes , memfd = extractSound(inputFile=inputFile, begin=begin, nbPackets=nbPackets, packetDuration=packetDuration, outputFileName=tmpname, sampleRate=sampleRate, nbChannels=nbChannels)