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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: I want to learn ffmpeg, where should I start?

7 点作者 rvalue超过 3 年前

3 条评论

lelag超过 3 年前
I can assure you nobody will be able to give a proper answer to such a vague question without more details about what you are hoping to achieve and your background. (Is it about using ffmpeg, learning the internals, are you already familiar with how digital videos work? etc...)
asicsp超过 3 年前
These might help:<p>* <a href="https:&#x2F;&#x2F;ffmpeg.org&#x2F;ffmpeg.html" rel="nofollow">https:&#x2F;&#x2F;ffmpeg.org&#x2F;ffmpeg.html</a><p>* <a href="https:&#x2F;&#x2F;wiki.archlinux.org&#x2F;title&#x2F;FFmpeg" rel="nofollow">https:&#x2F;&#x2F;wiki.archlinux.org&#x2F;title&#x2F;FFmpeg</a><p>* <a href="https:&#x2F;&#x2F;ffmpegfromzerotohero.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;ffmpegfromzerotohero.com&#x2F;</a> (discussed 10 months ago: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=26370704" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=26370704</a>)
tmaly超过 3 年前
Pick something you want to do then google it.<p>For example, I batch recorded a bunch of videos. I wanted to slice them up with ffmpeg before I brought them into the video editor. To do this, I use the command<p>ffmpeg.exe -ss 00:00:05.00 -i input.MP4 -t 00:00:18.00 -acodec copy -vcodec copy output.mp4<p>-ss is the start point -t is the offset from that start point -acodec copy copies the audio codec -i is my original video file<p>-vcodec copy copies the video codec