You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We converted the media stream from `h264` to `h265`, as expected the `h265` version of the media file is smaller than the `h264`.
882
+
We converted the media stream from `h264` to `h265`, as expected the `h265` version of the media file is smaller than the `h264` however the [created program](/3_transcoding.c) is capable of:
/* WIP :P -> it's not playing on VLC, the final bit rate is huge
939
+
* H264 -> VP9
940
+
* Audio -> Vorbis
941
+
* MP4 - WebM
942
+
*/
943
+
//StreamingParams sp = {0};
944
+
//sp.copy_audio = 0;
945
+
//sp.copy_video = 0;
946
+
//sp.video_codec = "libvpx-vp9";
947
+
//sp.audio_codec = "libvorbis";
948
+
//sp.output_extension = ".webm";
949
+
950
+
```
883
951
884
952
> Now, to be honest, this was [harder than I thought](https://github.com/leandromoreira/ffmpeg-libav-tutorial/pull/54) it'd be and I had to dig into the [FFmpeg command line source code](https://github.com/leandromoreira/ffmpeg-libav-tutorial/pull/54#issuecomment-570746749) and test it a lot and I think I'm missing something because I had to enforce `force-cfr` for the `h264` to work and I'm still seeing some warning messages like `warning messages (forced frame type (5) at 80 was changed to frame type (3))`.
0 commit comments