将 .mp4 切成碎片 Python
Cut .mp4 in pieces Python
我正在使用 Python 处理一些 .mp4 文件。我正在使用 wave
、math
、contextlib
、speech_recognition
和 AudioFileClip
库。我有很长的文件(视频+音频)。我想让 Python 在 5 分钟的新文件中剪切文件(仍在 .mp4 中),然后让 Python 转录每个文件。到目前为止,我能够编写以下代码来转录初始(长)文件:
import wave, math, contextlib
import speech_recognition as sr
from moviepy.editor import AudioFileClip
import os
os.chdir(" ... my path ...") # e.g. C:/Users/User/Desktop
FILE = "file_name" # e.g. video1 (without extension)
transcribed_audio_file_name = FILE + "_transcribed_speech.wav"
mp4_video_file_name = FILE + ".mp4"
audioclip = AudioFileClip(mp4_video_file_name)
audioclip.write_audiofile(transcribed_audio_file_name)
with contextlib.closing(wave.open(transcribed_audio_file_name,'r')) as f:
frames = f.getnframes()
rate = f.getframerate()
duration = frames / float(rate)
total_duration = math.ceil(duration / 60)
r = sr.Recognizer()
for i in range(0, total_duration):
with sr.AudioFile(transcribed_audio_file_name) as source:
audio = r.record(source, offset=i*60, duration=60)
f = open(FILE+"_transcription.py", "a")
f.write(r.recognize_google(audio, language="en-US"))
f.write(" ")
print(r.recognize_google(audio, language="en-US"))
f.close()
print("Transcription DONE.")
我如何添加一个部分,其中我将文件“视频”切成每段 5 分钟的片段,将它们另存为我的文件夹中的 .mp4,逐个处理(并转录)每个片段?
提前致谢!
您可以 python 使用 FFmpeg bash 命令行工具来操作视频os。
FFmpeg split the video into 10-minute chunks
python os 模块可以执行命令行命令。
ffmpeg -i source-file.foo -ss 0 -t 600 first-10-min.m4v
ffmpeg -i source-file.foo -ss 600 -t 600 second-10-min.m4v
ffmpeg -i source-file.foo -ss 1200 -t 600 third-10-min.m4v
来源:Unix Stack Exchange
你可以像这样使用 os.system()
:
splitLength = 5
for i in range(int(videoLength/splitLength)):
start =i*60
length=splitLength*60
os.system("ffmpeg -i source-file.foo -ss " + str(start) + " -t " + str(length) + " clip"+str(i)+".m4v")
我建议使用名为 movie.py
的库
第 1 步:
安装 movie.py 和
pip3 install moviepy
第 2 步:
识别特定长度的剪辑:
假设您要剪辑的原始视频时长为 20 分钟,您想要创建 3 个较小的视频(每个 5 分钟)
创建 times.txt 个文件并放入:
0-300
300-600
600-900
第 3 步:
编写Python脚本:
现在是有趣的部分,编写代码!
from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip
# Replace the filename below.
required_video_file = "filename.mp4"
with open("times.txt") as f:
times = f.readlines()
times = [x.strip() for x in times]
for time in times:
starttime = int(time.split("-")[0])
endtime = int(time.split("-")[1])
ffmpeg_extract_subclip(required_video_file, starttime, endtime, targetname=str(times.index(time)+1)+".mp4")
代码说明
- 第 1 行:导入必要的库
- 第 2 行:导入您的长视频剪辑
- 第 3-4 行:读取 times.txt 以确定切割时间
- 第 5 行:剥离时间以便 python 可以更好地阅读它
- 第 6-8 行:将视频剪切到必要的长度
- 第9行:以不同的名称保存剪切的视频
第 4 步
运行宁程序
运行节目
python split.py
希望对您有所帮助!
我正在使用 Python 处理一些 .mp4 文件。我正在使用 wave
、math
、contextlib
、speech_recognition
和 AudioFileClip
库。我有很长的文件(视频+音频)。我想让 Python 在 5 分钟的新文件中剪切文件(仍在 .mp4 中),然后让 Python 转录每个文件。到目前为止,我能够编写以下代码来转录初始(长)文件:
import wave, math, contextlib
import speech_recognition as sr
from moviepy.editor import AudioFileClip
import os
os.chdir(" ... my path ...") # e.g. C:/Users/User/Desktop
FILE = "file_name" # e.g. video1 (without extension)
transcribed_audio_file_name = FILE + "_transcribed_speech.wav"
mp4_video_file_name = FILE + ".mp4"
audioclip = AudioFileClip(mp4_video_file_name)
audioclip.write_audiofile(transcribed_audio_file_name)
with contextlib.closing(wave.open(transcribed_audio_file_name,'r')) as f:
frames = f.getnframes()
rate = f.getframerate()
duration = frames / float(rate)
total_duration = math.ceil(duration / 60)
r = sr.Recognizer()
for i in range(0, total_duration):
with sr.AudioFile(transcribed_audio_file_name) as source:
audio = r.record(source, offset=i*60, duration=60)
f = open(FILE+"_transcription.py", "a")
f.write(r.recognize_google(audio, language="en-US"))
f.write(" ")
print(r.recognize_google(audio, language="en-US"))
f.close()
print("Transcription DONE.")
我如何添加一个部分,其中我将文件“视频”切成每段 5 分钟的片段,将它们另存为我的文件夹中的 .mp4,逐个处理(并转录)每个片段? 提前致谢!
您可以 python 使用 FFmpeg bash 命令行工具来操作视频os。 FFmpeg split the video into 10-minute chunks python os 模块可以执行命令行命令。
ffmpeg -i source-file.foo -ss 0 -t 600 first-10-min.m4v
ffmpeg -i source-file.foo -ss 600 -t 600 second-10-min.m4v
ffmpeg -i source-file.foo -ss 1200 -t 600 third-10-min.m4v
来源:Unix Stack Exchange
你可以像这样使用 os.system()
:
splitLength = 5
for i in range(int(videoLength/splitLength)):
start =i*60
length=splitLength*60
os.system("ffmpeg -i source-file.foo -ss " + str(start) + " -t " + str(length) + " clip"+str(i)+".m4v")
我建议使用名为 movie.py
第 1 步:
安装 movie.py 和
pip3 install moviepy
第 2 步:
识别特定长度的剪辑:
假设您要剪辑的原始视频时长为 20 分钟,您想要创建 3 个较小的视频(每个 5 分钟)
创建 times.txt 个文件并放入:
0-300
300-600
600-900
第 3 步:
编写Python脚本:
现在是有趣的部分,编写代码!
from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip
# Replace the filename below.
required_video_file = "filename.mp4"
with open("times.txt") as f:
times = f.readlines()
times = [x.strip() for x in times]
for time in times:
starttime = int(time.split("-")[0])
endtime = int(time.split("-")[1])
ffmpeg_extract_subclip(required_video_file, starttime, endtime, targetname=str(times.index(time)+1)+".mp4")
代码说明
- 第 1 行:导入必要的库
- 第 2 行:导入您的长视频剪辑
- 第 3-4 行:读取 times.txt 以确定切割时间
- 第 5 行:剥离时间以便 python 可以更好地阅读它
- 第 6-8 行:将视频剪切到必要的长度
- 第9行:以不同的名称保存剪切的视频
第 4 步
运行宁程序
运行节目
python split.py
希望对您有所帮助!