gpt4 book ai didi

ffmpeg 下载部分 Youtube 视频,但其中一些视频黑屏几秒钟

转载 作者:行者123 更新时间:2023-12-04 23:21:30 27 4
gpt4 key购买 nike

所以我使用 ffmpeg 下载一些具有特定开始和停止时间的 youtube 视频。我的代码看起来像 os.system("ffmpeg -i $(youtube-dl --no-check-certificate -f 18 --get-url %s) -ss %s -to %s -c:v copy -c:a copy %s"% (l, y, z, w))其中变量都是文件名、url 以及开始和停止时间。有些视频可以正常播放,有些则黑屏,只有一部分视频,还有极少数只有音频文件。我的时间格式为 x.y,其中 x 是秒,y 是毫秒。这是问题吗,所以我需要将其转换为 00:00:00.0 格式?任何帮助表示赞赏

最佳答案

os.system("ffmpeg -ss %s -i $(youtube-dl --no-check-certificate -f 18 --get-url %s)  -t %s -c:v copy -c:a copy %s"% (l, y, z, w)) 
  • -ss 以 00:00:00.0000 格式开始视频
  • -t 以秒为单位的场景持续时间

  • 例如,如果您想从第 30 秒中提取一个场景,并且持续时间为 3 秒
    os.system("ffmpeg -ss 00:00:30.0000 -i $(youtube-dl --no-check-certificate -f 18 --get-url %s)  -t 3 -c:v copy -c:a copy %s"% (l, y, z, w)) 

    关于ffmpeg 下载部分 Youtube 视频,但其中一些视频黑屏几秒钟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65067435/

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