gpt4 book ai didi

flash - 是否可以使用 FFMPEG 生成 F4V 视频?

转载 作者:行者123 更新时间:2023-11-28 21:40:53 25 4
gpt4 key购买 nike

我需要生成一个脚本,将视频转换为 F4V,以便与 Flash Media Server 4.5 一起使用...这可能吗?我用它将文件转换为 MP4,然后交换扩展名。这工作正常,但似乎是一个肮脏的工作。我更愿意使用生成真正的 F4V。关于 ffmpeg 是否真正支持 F4V,我听到的说法不一。任何指导将不胜感激。另外,是否有关于 FFMPEG 允许哪些文件格式的文档指南?

最佳答案

我读过的所有内容都表明 MP4 和扁平化的 F4V 视频之间几乎没有区别。就我而言,我正在剥离音频,重新制作它并将其与原始视频混合在一起。我们仍在使用 FMS 3.5,但我在以下方面取得了成功:

ffmpeg \
-r 30000/1001 \ # Specifying video fps (29.97)
-i orig.f4v \ # orig.f4v - h264 video, mp3 audio (recorded using FMS 3.2)
-i new.wav \ # new.wav - remastered audio from orig.f4v
-map 0:0 \
-map 1:0 \
-vcodec copy \ # Preserving original h264 encoded video
-acodec aac \ # Using experimental AAC encoder, could use libfaac if available
-ab 96k \ # Matching audio bitrate to original bitrate
-strict experimental \ # Necessary to use the experimental AAC encoder
-async 1 \
new.f4v

#List of available formats
ffmpeg -formats

#List of available codecs
ffmpeg -codecs

关于flash - 是否可以使用 FFMPEG 生成 F4V 视频?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8649229/

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