ffmpeg-libav-tutorial icon indicating copy to clipboard operation
ffmpeg-libav-tutorial copied to clipboard

FFmpeg libav tutorial - learn how media works from basic to transmuxing, transcoding and more. Translations: πŸ‡ΊπŸ‡Έ πŸ‡¨πŸ‡³ πŸ‡°πŸ‡· πŸ‡ͺπŸ‡Έ πŸ‡»πŸ‡³ πŸ‡§πŸ‡·

Results 38 ffmpeg-libav-tutorial issues
Sort by recently updated
recently updated
newest added

Thanks for writing the great tutorial! I found some problem having been following your code. The return type of `avcodec_find_decoder` is changed `Avcodec*` to `const AVCodec*`. https://github.com/FFmpeg/FFmpeg/blob/master/libavcodec/codec.h#L266

Hi This error occures when calling `avcodec_open2` with the `AV_CODEC_ID_H265` or `AV_CODEC_ID_H264` encoder on windows: ``` "COM must not be in STA mode\n" Could not open the codec: "Invalid argument"...

Hi Can anyone please help me starting my installation of FFMEG in VS Code and run first file? I have tried all possible ways but not able to solve the...

https://github.com/leandromoreira/ffmpeg-libav-tutorial#transmuxing It's impossible to transmux a H264 ACC MP4 into WebM without transcoding WebM only supports VP8/VP9 video and Vorbis/Opus audio

I wonder if you could show how to use wasm of ffmpg avlib to decode 16 channels AAC to a wav buffer for reading by a backend written in javascript...

I need streaming sources to rtmp server and I ned to fix the output PTS and add delay to prevent to send all the data in an instant that its...

Is it possible to have as output of the program a colorful frames, not gray images and how to do it ?

I'm making a transcoder and I had a similar issue, console output ![image](https://user-images.githubusercontent.com/52719903/126224580-40975c19-dde3-46e8-9f35-5420e17a050e.png) I found out, that if you copy the decoded frame to a new AVFrame and free the...

Will the function of "av_read_frame" run by prescribed speed?