为什么 sony .mts 文件这么大?
我对多媒体知识了解不多。我知道索尼 .mts 文件是一种 H.264 容器。我使用 ffmpeg 将 .mts 文件转储到 .mpeg 文件中。除了 .mpeg 文件的大小比 .mts 缩小约 5 倍,ffmpeg 转储信息两个文件是相同的。我很困惑为什么 .mts 文件尺寸很大。我的转换会丢失哪些重要功能?
谢谢!
Kejia
感谢所有的回答。
我再次检查了两者的输出,发现有一个不同的地方:比特率。那我肯定失去了质量。现在我根据对显示设备的期望调整比特率——是的,考虑显示设备是必要的(专家的建议):$ ffmpeg -b 9498k -i my.mts my.mpg
。另一个有趣的选项是-ab,音频比特率。
I don't know much about multimedia knowledge. I know sony .mts file is a type of H.264 container. I use ffmpeg to dump my .mts file into a .mpeg file. Except the .mpeg file is shrunk around 5 times smaller in size than .mts, the ffmpeg dump information on both files is identical. I am confusing why .mts files have large size. What important features are lost by my conversion?
Thanks!
Kejia
Thanks to all answers.
I checked the output of both again and found that there is one different place: bitrate. Then I definitely lost quality. Now I adjust the bit rate in terms of the expectation to displaying equipment---yes, considering displaying equipments is necessary (an expert's advice): $ ffmpeg -b 9498k -i my.mts my.mpg
. Another interesting option is -ab, audio bit rate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MTS 文件通常来自高清摄像机。它们使用 AVCHD 编码,该编码使用 MPEG-4 AVC/H.264 视频编码和杜比 AC-3(杜比数字)或未压缩的线性 PCM 音频编码。您确定没有降低质量或分辨率吗?
MTS files typically come from high-definition camcorders. They use the AVCHD coded which uses MPEG-4 AVC/H.264 video encoding and Dolby AC-3 (Dolby Digital) or uncompressed linear PCM audio coding. Are you sure that you are not decreasing the quality or resolution?
您的文件具有 H.264/MPEG-4 AVC 视频压缩和杜比数字 (AC-3) 音频压缩或未压缩的 LPCM 音频,因此这相当于相当大的源文件大小。
当您导出(转换)为 MPG 时,您很可能会执行有损压缩。请仔细检查,尤其是音轨。
Your file has H.264/MPEG-4 AVC video compression and Dolby Digital (AC-3) audio compression or uncompressed LPCM audio, so this equals to a fairly large source file size.
When you export (convert) to MPG, you most likely perform a lossy compression. Please double check, especially the audio track.