Пример #1
0
        private void ParseForMp3Frames(Stream stream, bool enableSeeking)
        {
            Mp3Frame frame = null;
            long offsetOfFirstFrame = 0;
            stream = new BufferedStream(stream);

            while (ID3v2.SkipTag(stream))
            {
                /* skip all id3 tags (see https://github.com/filoe/cscore/issues/63)
                 * there are some files with multiple id3v2 tags
                 * not sure whether this is according to the id3 specification but we have to handle it anyway
                 * as long as the SkipTag method returns true, another id3 tag has been found
                 */
            }

            while (frame == null && !stream.IsEndOfStream())
            {
                offsetOfFirstFrame = stream.Position;
                frame = Mp3Frame.FromStream(stream);
            }

            if (frame == null)
                throw new Exception("Could not find any MP3-Frames in the stream.");

            if (stream.CanSeek)
            {
                XingHeader xingHeader = XingHeader.FromFrame(frame);
                if (xingHeader != null)
                    offsetOfFirstFrame = stream.Position;
            }
            _inputFormat = new Mp3Format(frame.SampleRate, frame.ChannelCount, frame.FrameLength, frame.BitRate);

            //Prescan stream
            if (enableSeeking)
            {
                _frameInfoCollection = new FrameInfoCollection();
                while (_frameInfoCollection.AddFromMp3Stream(stream))
                {
                }

                stream.Position = offsetOfFirstFrame;
            }
        }
Пример #2
0
 /// <summary>
 /// Disposes the <see cref="DmoMp3Decoder"/>.
 /// </summary>
 /// <param name="disposing">True to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
 protected override void Dispose(bool disposing)
 {
     base.Dispose(disposing);
     if (_comObj != null)
     {
         Marshal.ReleaseComObject(_comObj);
         _comObj = null;
     }
     if (_frameInfoCollection != null)
     {
         _frameInfoCollection.Dispose();
         _frameInfoCollection = null;
     }
 }
Пример #3
0
        public MP3Stream(Stream stream, bool scanStream, int lengthOffset)
        {
            int frameLength = 0;
            if (scanStream)
                _frameInfoCollection = new FrameInfoCollection();
            else
                _frameInfoCollection = null;

            _dataStartIndex = stream.Position;
            do
            {
                _frame = MP3Frame.FromStream(stream);
                if (_frame == null && stream.IsEndOfStream())
                    throw new FormatException("Stream is no MP3-stream. No MP3-Frame was found.");
            } while (_frame == null && !stream.IsEndOfStream());

            frameLength = _frame.FrameLength;
            _sampleRate = _frame.SampleRate;
            XingHeader = XingHeader.FromFrame(_frame); //The first frame can contain a Xingheader
            if (XingHeader != null)
            {
                //Todo: dataInitPosition = stream.Position
                _dataStartIndex = stream.Position;
            }

            _dataLength = stream.Length - _dataStartIndex - lengthOffset;

            if (scanStream)
            {
                stream.Position = _dataStartIndex;
                PreScanFile(stream);
                CanSeek = true;
            }
            else
            {
                CanSeek = false;
            }

            stream.Position = _dataStartIndex;

            /*
             * bytes * 8 (8bits perbyte) / ms = totalbits / totalms = bits per ms
             */
            if (scanStream)
            {
                _bitRate = ((_dataLength * 8.0) / ((double)_frameInfoCollection.TotalSamples / (double)_sampleRate));
            }
            else
            {
                _bitRate = ((_frame.BitRate) / 1);
            }
            MP3Format = new MP3Format(_sampleRate, _frame.ChannelCount, frameLength, (int)Math.Round(_bitRate));
            _converter = new AcmConverter(MP3Format);
            WaveFormat = _converter.DestinationFormat;

            //_bytesPerSample = (WaveFormat.BitsPerSample / 8 * WaveFormat.Channels);
            _pcmDstBuffer = new byte[SamplesPerFrame * WaveFormat.BytesPerBlock * 2];

            stream.Position = _dataStartIndex;
            _stream = stream;
        }
Пример #4
0
 protected void Dispose(bool disposing)
 {
     lock (_lockObject)
     {
         if (disposing)
         {
             if (_converter != null)
             {
                 _converter.Dispose();
                 _converter = null;
             }
             if (_stream != null)
             {
                 _stream.Dispose();
                 _stream = null;
             }
             if (_frameInfoCollection != null)
             {
                 _frameInfoCollection.Dispose();
                 _frameInfoCollection = null;
             }
             _pcmDstBuffer = null;
             _frame = null;
         }
     }
 }
Пример #5
0
        private void ParseForMP3Frame(Stream stream)
        {
            if (_parsedStream)
                return;

            MP3Frame frame = null;
            long offsetOfFirstFrame = 0;

            while(frame == null && !stream.IsEndOfStream())
            {
                offsetOfFirstFrame = stream.Position;
                frame = MP3Frame.FromStream(stream);
            }

            if (frame == null)
                throw new MP3Exception("Could not find any MP3-Frames in the stream.");

            XingHeader xingHeader = XingHeader.FromFrame(frame);
            if(xingHeader != null)
            {
                offsetOfFirstFrame = stream.Position;
            }

            _inputFormat = new MP3Format(frame.SampleRate, frame.ChannelCount, frame.FrameLength, frame.BitRate); //implement VBR?

            //Prescan stream
            _frameInfoCollection = new FrameInfoCollection();
            while (_frameInfoCollection.AddFromMP3Stream(stream)) ;

            stream.Position = offsetOfFirstFrame;

            _parsedStream = true;
        }
Пример #6
0
        private void ParseForMp3Frames(Stream stream, bool enableSeeking)
        {
            Mp3Frame frame = null;
            long offsetOfFirstFrame = 0;

            while (frame == null && !stream.IsEndOfStream())
            {
                offsetOfFirstFrame = stream.Position;
                frame = Mp3Frame.FromStream(stream);
            }

            if (frame == null)
                throw new Exception("Could not find any MP3-Frames in the stream.");

            if (stream.CanSeek)
            {
                XingHeader xingHeader = XingHeader.FromFrame(frame);
                if (xingHeader != null)
                    offsetOfFirstFrame = stream.Position;
            }
            _inputFormat = new Mp3Format(frame.SampleRate, frame.ChannelCount, frame.FrameLength, frame.BitRate);
            //todo: implement VBR

            //Prescan stream
            if (enableSeeking)
            {
                _frameInfoCollection = new FrameInfoCollection();
                while (_frameInfoCollection.AddFromMp3Stream(stream))
                {
                }

                stream.Position = offsetOfFirstFrame;
            }
        }