gpt4 book ai didi

python - 如何找到视频旋转并使用 moviepy 相应地旋转剪辑?

转载 作者:行者123 更新时间:2023-12-04 22:45:10 27 4
gpt4 key购买 nike

我正在使用 moviepy 导入一些视频,但本应为纵向模式的视频却以横向模式导入。我需要检查旋转是否已更改,如果已更改,则将其旋转回来。

此功能是否内置于 moviepy 中?如果没有,我还能如何检查?

最佳答案

我现在已经找到了问题的解决方案。

由于某种原因,Moviepy 在导入视频时会将纵向视频旋转为横向。为了自动将它们导回,您需要找到记录其旋转的视频元数据,然后根据需要旋转视频。我这样做的方法是使用 ffprobe,可以使用 this 为 Windows 安装它。 youtube 教程。请注意,您需要删除 ffmpeg/bin 中的 ffmpeg.exe 文件,因为您只需要 ffprobe.exe。如果你不删除 ffmpeg.exe,moviepy 将使用那个而不是它应该使用的那个。这导致我的系统出现一些奇怪的问题。

安装 ffprobe 后,您可以为导入的每个视频运行以下 python 函数:

import subprocess
import shlex
import json

def get_rotation(file_path_with_file_name):
"""
Function to get the rotation of the input video file.
Adapted from gist.github.com/oldo/dc7ee7f28851922cca09/revisions using the ffprobe comamand by Lord Neckbeard from
stackoverflow.com/questions/5287603/how-to-extract-orientation-information-from-videos?noredirect=1&lq=1

Returns a rotation None, 90, 180 or 270
"""
cmd = "ffprobe -loglevel error -select_streams v:0 -show_entries stream_tags=rotate -of default=nw=1:nk=1"
args = shlex.split(cmd)
args.append(file_path_with_file_name)
# run the ffprobe process, decode stdout into utf-8 & convert to JSON
ffprobe_output = subprocess.check_output(args).decode('utf-8')
if len(ffprobe_output) > 0: # Output of cmdis None if it should be 0
ffprobe_output = json.loads(ffprobe_output)
rotation = ffprobe_output

else:
rotation = 0

return rotation

这会调用 ffprobe 命令 ffprobe -loglevel error -select_streams v:0 -show_entries stream_tags=rotate -of default=nw=1:nk=1 your_file_name.mp4,然后返回旋转元数据那个文件。

然后调用以下调用上述函数的函数,并旋转您传递给它的剪辑。请注意,参数 clip 是电影 VideoFileClip 对象,参数 file_pathclip 所在文件的完整路径(例如 file_path 可以是 /usr/local/documents/mymovie.mp3)

from moviepy.editor import *
def rotate_and_resize(clip, file_path):
rotation = get_rotation(file_path)
if rotation == 90: # If video is in portrait
clip = vfx.rotate(clip, -90)
elif rotation == 270: # Moviepy can only cope with 90, -90, and 180 degree turns
clip = vfx.rotate(clip, 90) # Moviepy can only cope with 90, -90, and 180 degree turns
elif rotation == 180:
clip = vfx.rotate(clip, 180)

clip = clip.resize(height=720) # You may want this line, but it is not necessary
return clip

关于python - 如何找到视频旋转并使用 moviepy 相应地旋转剪辑?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41200027/

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