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 41 ffmpeg-libav-tutorial issues
Sort by recently updated
recently updated
newest added

Hello, Thanks for the tutorial. I would like to decode frame buffer encoded in MPEG2-TS. (H.264/AAC data) This buffer is received from socket. And I would like to get an...

Hello Leandro, Thanks so much for this repository! This account and your LinkedIn feed has contributed immensely for most of my knowledge about Video processing. So as I understand this...

Hi, I noticed this line of code in README.md ```c printf("\tCodec %s ID %d bit_rate %lld", pLocalCodec->long_name, pLocalCodec->id, pCodecParameters->bit_rate); ``` in which `pLocalCodec` is not declared _in the article_ before...

Hi, First I would like to thank you for the initiative. I have few suggestoin for your project: 1. Add a section for FFMpeg compilation and/or links for Windows/Linux. For...

I use centos7. I use yum installed the following pakages: >sudo yum install ffmpeg.x86_64 ffmpeg-debuginfo.x86_64 ffmpeg-devel.x86_64 ffmpeg-libs.x86_64 and I can run ffmpeg. But when I make your 0_helllo_word.c, show me...

1. calloc not malloc in your initialise of contexts 2. encode_frame ONLY called once after the file has been processed. 3. Crash at line 269 with an invalid index

Hello there! I am glad to see your project, I am also a video enthusiast, I want to keep up with the progress of your development, at the same time...

While not relevant to explain concepts, I think correctness should still be thought about. In the [Transmuxing section](https://github.com/leandromoreira/ffmpeg-libav-tutorial/blob/master/README.md#transmuxing) the image depicts h264 + aac in a WEBM file. In reality...