如何将 mkv(带字幕)转换为 Nexus One 友好的内容?

发布于 2024-12-22 05:06:13 字数 545 浏览 1 评论 0原文

我有一个 ffmpeg one-liner,它非常适合为我的 Nexus One 生成视频文件:

ffmpeg -i infile.mkv -acodec aac -s 572x238 -vcodec libx264 -vpre ipod640 -ab 128k -b 512k -f mp4 -strict experimental outfile.mp4

但它对 infile.mkv 中的字幕一无所知——通常不是问题,除非我正在处理与一部非英语电影。在这种情况下,我想使用日语音轨和英语字幕。

有趣的是,我可以使用 mplayer 使用 -alang-slang 来播放它,但不知道如何使用 mencoder 制作 Nexus One 友好的视频。我可以使用 ffmpeg 生成 Nexus One 友好的视频,但不知道如何让它使用特定的字幕轨道。

如果有人能为我解决其中一个问题,我将成为一名快乐的露营者。

I have this ffmpeg one-liner that's been good for generating video files for my Nexus One:

ffmpeg -i infile.mkv -acodec aac -s 572x238 -vcodec libx264 -vpre ipod640 -ab 128k -b 512k -f mp4 -strict experimental outfile.mp4

But it does this ignorant of the subtitles in infile.mkv -- usually not a problem, unless I'm dealing with a non-english movie. In cases like this, I'd like to use the Japanese audio track, and the English subtitles.

The funny bit is that I can use mplayer to play it using -alang and -slang, but don't know how to use mencoder to make Nexus One friendly videos. I can use ffmpeg to generate Nexus One friendly videos, but can't figure out how to get it to use a specific subtitle track.

If someone can solve one of these for me, I'll be a happy camper.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巴黎盛开的樱花 2024-12-29 05:06:13

经过大量谷歌搜索和试用后,错误,这对我有用:

mencoder infile.mkv -o outfile.mp4 -vf dsize=512:352:2,scale=-8:-8,harddup -oac faac -faacopts mpeg=4:object=2:raw:br=128 -of lavf -lavfopts format=mp4 -ovc x264 -sws 9 -x264encopts nocabac:level_idc=30:bframes=0:bitrate=264:threads=auto:global_header:threads=auto:subq=5:frameref=6:partitions=all:trellis=1:chroma_me:me=umh

它没有使用 ffmpeg,但它似乎可以工作。

Well after a lot of googling and trial & error, here is what worked for me:

mencoder infile.mkv -o outfile.mp4 -vf dsize=512:352:2,scale=-8:-8,harddup -oac faac -faacopts mpeg=4:object=2:raw:br=128 -of lavf -lavfopts format=mp4 -ovc x264 -sws 9 -x264encopts nocabac:level_idc=30:bframes=0:bitrate=264:threads=auto:global_header:threads=auto:subq=5:frameref=6:partitions=all:trellis=1:chroma_me:me=umh

It's not using ffmpeg, but it appears to be working.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文