TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

FFmpeg libav tutorial – from basic to transmuxing, transcoding and more

142 点作者 dreampeppers99超过 5 年前

8 条评论

pornel超过 5 年前
For a second I hoped it'd be an actual low-encoder that does a clever lossless transcoding by treating H.264 data as a subset of H.265 data. But this just feeds frames to ffmpeg.
评论 #21994502 未加载
rasz超过 5 年前
<p><pre><code> import encoder encoder(stuff) </code></pre> look, I wrote Minimalist Encoder!
评论 #21996518 未加载
doppel超过 5 年前
Having done something similar to transcode h264 to fragment mp4, there are a ton of pitfalls, weird settings and flags that need to be set to get a &quot;correct&quot; output that will play in most players. FFmpeg&#x2F;libav provides a ton of functionality, but sometimes it&#x27;s like reading javadocs, where you get the interface but have no idea of what to put in.
评论 #21990872 未加载
Already__Taken超过 5 年前
Has h265 got to the point where it&#x27;s always in every case better than h264? I don&#x27;t need to think about it anymore?
评论 #21990498 未加载
评论 #21997662 未加载
评论 #21990594 未加载
评论 #21990970 未加载
ngcc_hk超过 5 年前
It is really good tutorial. Just not aligned when the expectations about programming depth. Really good.
speps超过 5 年前
Interesting tutorial on libav for sure but the submission title is definitely a bit of a stretch given that it&#x27;s just a libav tutorial and you can probably do the same with ffmpeg directly quite easily. Can we change the title please?
评论 #21990508 未加载
评论 #21990319 未加载
评论 #21990367 未加载
评论 #21997030 未加载
manorwar8超过 5 年前
Great to see it here, simple and educative.
CHsurfer超过 5 年前
char* convert(char* str, char find, char replace){<p><pre><code> char *current_pos = strchr(str,find); while (current_pos){ *current_pos = replace; current_pos = strchr(current_pos,find); } return str; </code></pre> }<p>convert(&quot;H264&quot;, &quot;4&quot;, &quot;5&quot;)
评论 #21991096 未加载