gpt4 book ai didi

video - 将 MTS 转换为 YouTube 的 MPG 的 FFmpeg 设置

转载 作者:行者123 更新时间:2023-12-03 05:43:55 29 4
gpt4 key购买 nike

我想讨论 FFmpeg 转换具有以下配置文件的 MTS 视频文件以上传到 YouTube 的最佳参数。 YouTube published their suggested resolutions and bitrates settings .

// Input video profile
Stream #0:0[0x1011]: Video: h264 (High) (HDMV / 0x564D4448), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 50 fps, 50 tbr, 90k tbn, 50 tbc
Stream #0:1[0x1100]: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, stereo, s16, 256 kb/s

YouTube has length restrictions to the videos我也想把原始文件切成小块。

这是我当前转换视频的配置。我正在运行 Ubuntu 10.10。使用 FFmpeg 版本 git-2011-12-31-81980bf。
ffmpeg -ss 00:15:00 -i input.mts -t 00:30:00 -vcodec libx264 -deinterlace -s hd720 -ab 128k -threads 0 output.mp4

我也想重新编码视频,因为我不想上传原始录音的大文件。

最佳答案

您可能不需要重新编码。 Youtube 可能会接受生成的文件。您可以使用 FFmpeg 分割视频而无需重新编码:
ffmpeg -ss 00:15:00 -i input.mts -t 00:30:00 -c copy output.mkv
移动-ss如果偏移量不准确或看起来不正确,则作为输出选项(在 -i input.mts 之后)。它作为输出选项更准确,因为它会在给定时间之前解码所有内容,但比 -ss 慢得多作为尝试立即寻找给定时间的输入选项。旧 FFmpeg 的用户可能必须使用 -vcodec copy -acodec copy而不是 -c copy .

关于video - 将 MTS 转换为 YouTube 的 MPG 的 FFmpeg 设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9001790/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com