Search found 2 matches
- Tue Jan 10, 2012 2:43 pm
- Forum: Developement with FFmpeg
- Topic: How to bypass av_open_input_file
- Replies: 2
- Views: 3004
Re: How to bypass av_open_input_file
You can use init_put_byte/av_open_input_stream. Read this tutorial.
- Mon Jan 09, 2012 2:30 pm
- Forum: Developement with FFmpeg
- Topic: Crush on av_open_input_stream.
- Replies: 0
- Views: 2303
Crush on av_open_input_stream.
Hi! I need to open a custom input stream in ffmpeg. I've done the following: m_pFormat=av_find_input_format("mp3"); m_pFormat->flags = AVFMT_NOFILE; if (init_put_byte(&m_pIOContext, m_pInputBuf, INPUT_BUF_SIZE - AVPROBE_PADDING_SIZE, 0, this, read_packets, NULL, NULL) < 0) { FreeFFAll(); return FALS...