Questions tagged «mp4»

有关mp4多媒体文件格式的问题




2
如何使用ffmpeg快速将mp4转换为webm?
为了使用HTML5视频的网站,我必须将76个mp4文件转换为webm。我说的是10 Gb的mp4文件...我知道我可以简单地要求ffmpeg使用以下方法: ffmpeg -i input_file.mp4 output_file.webm 当然,我将通过以下方式递归执行此操作: find ./ -name '*.mp4' -exec bash -c 'ffmpeg -i "$0" "${0%%.mp4}.webm"' {} \; 我什至尝试了一些在互联网上找到的东西: ffmpeg -i input_file.mp4 -cpu-used 4 -threads 8 output_file.webm 但问题是,我花了不到一周的时间!!!我究竟做错了什么?有什么办法可以加快速度吗?如果转换为ogg,我会提高速度吗?请帮忙!!!
20 video  ffmpeg  conversion  mp4  webm 


4
使用avconv批量提取音频而无需转码
我大约有70个mp4文件,我想直接提取音频文件而无需进一步进行转码。所有的mp4文件都有aac音频文件。 我了解我可以使用以下命令从mp4文件之一提取音频文件: avconv -i "INPUT FILE" -map 0:1 -c:a copy "OUTPUT FILE" 如何从所有70个mp4文件中提取所有音频文件,所以最终得到70个aac文件?
14 12.04  mp4  avconv  aac 

6
使用ffmpeg将mkv转换为mp4
当我尝试使用ffmpeg将mkv转换为mp4时,发生以下错误: version 0.8.3-4:0.8.3-0ubuntu0.12.04.1, Copyright (c) 2000-2012 the Libav developers built on Jun 12 2012 16:52:09 with gcc 4.6.3 *** THIS PROGRAM IS DEPRECATED *** This program is only provided for compatibility and will be removed in a future release. Please use avconv instead. [matroska,webm @ 0x1e939c0] max_analyze_duration reached [matroska,webm @ …
14 ffmpeg  convert  mp4  mkv 

3
如何将ac音频从mp4文件提取到m4a
如何从mp4文件中提取AAC音频? 我尝试使用ffmpeg,-acodec copy但是如果我使用mp4作为输出,它将仍然对视频进行编码,并且我得到相同的文件大小。 如果我使用m4a作为输出,它将以某种方式仍然对视频进行编码,并且我得到几乎相同的文件大小。 使用aac作为输出,尽管文件大小表明视频已剥离,但我无法在puddletag中打开文件 提前致谢
13 ffmpeg  avconv  mp4  aac 

5
好的电影mp4元数据编辑器?
我需要从一部电影中以mp4格式读取元数据,并且为此,我需要一个非常基本的mp4(用于电影)元数据编辑器。您可以推荐哪些程序?(因为我什么都不知道)。 我不需要媒体组织者,也不需要任何花哨的东西,只是让我可以窥视文件中的东西。
13 metadata  mp4 


3
ffmpeg未知libfaac Ubuntu 14.04
我已经在Ubuntu 14.04中安装了ffmpeg 2.3 ffmpeg -i demo.mpg -acodec libfaac demo.mp4 ffmpeg version 2.3 Copyright (c) 2000-2014 the FFmpeg developers built on Aug 13 2014 22:15:33 with gcc 4.8 (Ubuntu 4.8.2-19ubuntu1) configuration: libavutil 52. 92.100 / 52. 92.100 libavcodec 55. 69.100 / 55. 69.100 libavformat 55. 48.100 / 55. 48.100 libavdevice 55. …
8 14.04  video  ffmpeg  mp4 

1
如何使用avconv将mp4文件转换为avi?
我需要将一些mp4文件转换为另一种格式(我选择了avi:可能会有更好的格式,欢迎提出建议)。我尝试使用ffmpeg,但收到了已弃用的消息,因此我正在使用avconv,但再次可能有更好的工具。 这是我正在使用的: avconv -i e2.mp4 -vtag libxvid -b:v 1500k e2.avi 这给了我以下输出: avconv version 0.8.9-6:0.8.9-0ubuntu0.13.10.1, Copyright (c) 2000-2013 the Libav developers built on Nov 9 2013 19:09:46 with gcc 4.8.1 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x1c677a0] multiple edit list entries, a/v desync might occur, patch welcome Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'e2.mp4': Metadata: major_brand : …

1
播放mp4文件时图腾上的绿屏
当我尝试在Ubuntu 14.04中启动mp4视频文件时,仅显示绿色屏幕,而没有视频。音频正常运行。我在Ubuntu中使用标准的视频应用程序,我认为这是图腾并使用gstreamer。 在此处尝试了此修复程序,但没有帮助:http : //www.webupd8.org/2012/06/fix-mp4-playback-in-ubuntu-1204.html
1 14.04  video  totem  gstreamer  mp4 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.