Hi Michael, thanks for your response! > for the ISO base media format you need a demuxer. See libavformat from > ffmpeg.org you need to use av_read_frame() and feed the result (from > the video > stream) into avcodec_decode_video2()
Of course I need to demux the mp4 file first :-). But the demuxer works only on files. In my case I download a MP4 file using an own streaming client (for the new standard, DASH - Dynamic Adaptive Streaming) and I need to feed to demuxer by the downloaded pieces on the fly. How can I do this? Or do I have to do the demuxing by my own without libav? > but as said its not enough on its own. you can see ffmpeg.c, ffplay.c > or ffprobe.c as examples, they might be a bit complex though. Do you maybe have an hint for me where I can find a piece of code which fits to my requirements or does something similar? Thx! Stefan _______________________________________________ libav-api mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-api
