FFmpeg avformat_open_input with memory located file

7.1k Views Asked by At

I want to decode an internet-audiostream, but I don't want to write the data to disk, so the data is located in the memory only.

But when I want to decode data to raw-data, I must initialise the format-context and so I need to use avformat_open_input. But these function needs a detailed location of the file.

Have anyone a solution, how I can get my memory located data into the format-context to decode this data to a raw data?

2

There are 2 best solutions below

0
On

You must create custom AVIOContext.

For details, see my answer to Play a Video from MemoryStream, Using FFMpeg

0
On

You don't need a file, just use your internet-audiostream url to open. like this:

AVFormatContext *ic = avformat_alloc_context();
err = avformat_open_input(&ic, "rtmp://www.something.com/a.mp4", NULL, NULL);