如何将 mkv(带字幕)转换为 Nexus One 友好的内容?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过大量谷歌搜索和试用后,错误,这对我有用:
它没有使用 ffmpeg,但它似乎可以工作。
Well after a lot of googling and trial & error, here is what worked for me:
It's not using ffmpeg, but it appears to be working.