FFMpeg在本地转换,但不在Ubuntu生产服务器上转换

时间:2016-01-01 18:42:56

标签: ffmpeg ubuntu-14.04

我正在使用ffmpeg&此命令将.mov转换为.mp4。它在本地工作,但它不能在生产服务器上工作。

 /usr/bin/ffmpeg

我已经检查过在Ubuntu 14.04.x prod服务器上安装了ffmpeg ...

libavutil      55. 11.100 / 55. 11.100
libavcodec     57. 20.100 / 57. 20.100
libavformat    57. 20.100 / 57. 20.100
libavdevice    57.  0.100 / 57.  0.100
libavfilter     6. 21.101 /  6. 21.101
libavresample   3.  0.  0 /  3.  0.  0
libswscale      4.  0.100 /  4.  0.100
libswresample   2.  0.101 /  2.  0.101
libpostproc    54.  0.100 / 54.  0.100
Output #0, mov, to 'inputFile.MOV':
Output file #0 does not contain any stream

我每次都会收到此错误:

History.pushState(state, null, location.href)

思考?

1 个答案:

答案 0 :(得分:0)

看起来我忘了在我的Ubuntu命令行脚本中添加-f之后的ffmpeg。

Command should b: /path/to/ffmpeg -i inputFile.MOV -vcodec libx264 -pix_fmt yuv420p -profile:v baseline -preset slow -crf 22 -movflags +faststart outputFile.mp4