gpt4 book ai didi

youtube - 如何交换 SBS LR 3D 视频?

转载 作者:行者123 更新时间:2023-12-03 06:20:07 33 4
gpt4 key购买 nike

我有这个命令

ffmpeg -i "D:\Neuer Ordner\Test.mkv" -c copy -ss 00:00:00 -t 00:08:00 -sn "D:\Neuer Ordner\Test1.mkv" -c copy -ss 00:08:00 -t 00:08:00 -sn "D:\Neuer Ordner\Test2.mkv" -c copy -ss 00:16:00 -t 00:08:00 -sn "D:\Neuer Ordner\Test3.mkv" -c copy -ss 00:24:00 -sn "D:\Neuer Ordner\Test4.mkv"

我的目标是将它们上传到 youtube。然而,我需要在转换之前交换每一对,所以左变成右,右变成左。

我找到了复杂的过滤器并尝试了
ffmpeg -i "D:\Neuer Ordner\Test.mkv" -filter:v "crop=1280:720:0:0" -i "D:\Neuer Ordner\Test.mkv" -filter:v "crop=1280:720:1280:0" -filter_complex "pad=in_w*2:in_h, overlay=main_w/2:0, scale=in_w/2:in_h, scale=-1:720" -c:a copy "D:\Neuer Ordner\output.mkv" 

这导致
Option filter:v (set stream filtergraph) cannot be applied to input file D:\Neuer Ordner\Test.mkv -- you are trying to apply an input option to an output file or vice versa. Move this option before the file it belongs to. 
Error parsing options for input file D:\Neuer Ordner\Test.mkv.
Error opening input files: Invalid argument

哪个命令可以解决这个问题?

最佳答案

试试这个:

ffmpeg -i "D:\Neuer Ordner\Test.mkv" \
-c copy -ss 00:00:00 -t 00:08:00
-metadata stereo_mode=right_left -sn "D:\Neuer Ordner\Test1.mkv" \
-c copy -ss 00:08:00 -t 00:08:00 \
-metadata stereo_mode=right_left -sn "D:\Neuer Ordner\Test2.mkv" \
-c copy -ss 00:16:00 -t 00:08:00 \
-metadata stereo_mode=right_left -sn "D:\Neuer Ordner\Test3.mkv" \
-c copy -ss 00:24:00 -metadata stereo_mode=right_left -sn "D:\Neuer Ordner\Test4.mkv"

关于youtube - 如何交换 SBS LR 3D 视频?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36768588/

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