请教各位大佬,小白请教一个关于mov视频生成的问题:
问题描述:
1.最开始在后端使用ffmpeg(语言是python)生成了一份mov的视频文件,生成的语法是:
def convert_to_mov(output_folder, fps, output_video_path):
ffmpeg_command = [
'ffmpeg',
'-y',
'-framerate', str(fps),
'-i', f"{output_folder}/frame_%04d.png",
'-c:v', 'prores_ks',
'-profile:v', '4444',
'-pix_fmt', 'yuva444p10le',
'-vendor', 'apl0',
'-vf', 'format=yuva444p10le',
'-movflags', '+faststart',
output_video_path
]
try:
print("🚀 执行 FFmpeg 转换...")
result = subprocess.run(
ffmpeg_command,
check=True,
capture_output=True,
text=True
)
print("✅ FFmpeg 输出:\n", result.stderr)
except subprocess.CalledProcessError as e:
print(f"❌ FFmpeg 失败: {e.stderr}")
def extract_audio(input_video, output_audio):
"""提取音频"""
ffmpeg_command = [
'ffmpeg',
'-i', input_video,
'-q:a', '0', # 使用最高音频质量
'-map', 'a', # 提取音频轨道
'-y', # 覆盖输出文件
output_audio
]
try:
print("🎵 提取音频...")
subprocess.run(ffmpeg_command, check=True)
print("✅ 音频提取完成")
except subprocess.CalledProcessError as e:
print(f"❌ 提取音频失败: {e.stderr}")
def add_audio_to_video(output_video_path, extracted_audio, final_video_path):
"""将音频添加到视频"""
ffmpeg_command = [
'ffmpeg',
'-i', output_video_path, # 无音频的视频
'-i', extracted_audio, # 提取的音频
'-c:v', 'copy', # 视频流复制(不重新编码)
'-c:a', 'aac', # 使用 AAC 编码音频
'-strict', 'experimental', # 确保音频格式兼容
'-y', # 覆盖输出文件
final_video_path # 最终的视频输出路径
]
try:
print("🎬 合并音频...")
subprocess.run(ffmpeg_command, check=True)
print("✅ 音频合成完成!最终视频路径:", final_video_path)
except subprocess.CalledProcessError as e:
print(f"❌ 音频合成失败: {e.stderr}")
2.此时使用 fftemp 的 ffprobe 获取的文件信息: 指令为 ffprobe -v error -show_format -show_streams filename.mov
[STREAM]
index=0
codec_name=prores
codec_long_name=Apple ProRes (iCodec Pro)
profile=4444
codec_type=video
codec_tag_string=ap4h
codec_tag=0x68347061
width=960
height=544
coded_width=960
coded_height=544
closed_captions=0
film_grain=0
has_b_frames=0
sample_aspect_ratio=N/A
display_aspect_ratio=N/A
pix_fmt=yuva444p12le
level=-99
color_range=unknown
color_space=unknown
color_transfer=unknown
color_primaries=unknown
chroma_location=unspecified
field_order=progressive
refs=1
id=0x1
r_frame_rate=25/1
avg_frame_rate=25/1
time_base=1/12800
start_pts=0
start_time=0.000000
duration_ts=13312
duration=1.040000
bit_rate=34542807
max_bit_rate=N/A
bits_per_raw_sample=12
nb_frames=26
nb_read_frames=N/A
nb_read_packets=N/A
DISPOSITION:default=1
DISPOSITION:dub=0
DISPOSITION:original=0
DISPOSITION:comment=0
DISPOSITION:lyrics=0
DISPOSITION:karaoke=0
DISPOSITION:forced=0
DISPOSITION:hearing_impaired=0
DISPOSITION:visual_impaired=0
DISPOSITION:clean_effects=0
DISPOSITION:attached_pic=0
DISPOSITION:timed_thumbnails=0
DISPOSITION:non_diegetic=0
DISPOSITION:captions=0
DISPOSITION:descriptions=0
DISPOSITION:metadata=0
DISPOSITION:dependent=0
DISPOSITION:still_image=0
TAG:handler_name=VideoHandler
TAG:vendor_id=FFMP
TAG:encoder=Lavc61.7.100 prores_ks
[/STREAM]
[STREAM]
index=1
codec_name=aac
codec_long_name=AAC (Advanced Audio Coding)
profile=LC
codec_type=audio
codec_tag_string=mp4a
codec_tag=0x6134706d
sample_fmt=fltp
sample_rate=44100
channels=1
channel_layout=mono
bits_per_sample=0
initial_padding=0
id=0x2
r_frame_rate=0/0
avg_frame_rate=0/0
time_base=1/44100
start_pts=0
start_time=0.000000
duration_ts=46085
duration=1.045011
bit_rate=73759
max_bit_rate=N/A
bits_per_raw_sample=N/A
nb_frames=46
nb_read_frames=N/A
nb_read_packets=N/A
extradata_size=5
DISPOSITION:default=1
DISPOSITION:dub=0
DISPOSITION:original=0
DISPOSITION:comment=0
DISPOSITION:lyrics=0
DISPOSITION:karaoke=0
DISPOSITION:forced=0
DISPOSITION:hearing_impaired=0
DISPOSITION:visual_impaired=0
DISPOSITION:clean_effects=0
DISPOSITION:attached_pic=0
DISPOSITION:timed_thumbnails=0
DISPOSITION:non_diegetic=0
DISPOSITION:captions=0
DISPOSITION:descriptions=0
DISPOSITION:metadata=0
DISPOSITION:dependent=0
DISPOSITION:still_image=0
TAG:handler_name=SoundHandler
TAG:vendor_id=[0][0][0][0]
[/STREAM]
[FORMAT]
filename=filename.mov
nb_streams=2
nb_programs=0
nb_stream_groups=0
format_name=mov,mp4,m4a,3gp,3g2,mj2
format_long_name=QuickTime / MOV
start_time=0.000000
duration=1.045011
size=4502463
bit_rate=34468253
probe_score=100
TAG:major_brand=qt
TAG:minor_version=512
TAG:compatible_brands=qt
TAG:encoder=Lavf61.3.104
[/FORMAT]
3.然后此时诡异的东西来了,此时使用浏览器访问文件(此时文件是在局域网内)后(因为文件是mov格式,所以文件自动下载)此时下载后的文件再去播放(软件为vlc)文件无法播放(之前是可以的),使用ffmpeg获取文件信息,指令为: ffprobe -v error -show_format -show_streams Dfilename.mov 此时会报错:[mov,mp4,m4a,3gp,3g2,mj2 @ 0000024861dfaf80] error reading header
powershell1FatherPro.mov: Invalid data found when processing input
本人实在想不懂是因为什么原因导致的文件无法正常查看,特此请教各位大佬,希望各位大佬多多指点一二,在此谢谢各位大佬
希望大佬能够指出问题出现的原因,并给出一些可行的解决方法