使用转码将MOV转换为mp4

时间:2017-01-02 23:20:01

标签: linux ffmpeg transcode

我想使用转码将MOV从卡西欧相机转换为mp4。为什么转码?因为我也想在同一步骤中解除视频。

当我使用

ffmpeg -i in.MOV out.mp4

它有效。使用时

transcode -J stabilize -i in.MOV

transcode -J transform -i in.MOV -y ffmpeg -F mpeg4 -o out.mp4

我收到了数百个这样的错误:

[ffmpeg_audio] Error: avcodec_open2 failed
[adpcm_ima_wav @ 0x1f7f180] Only 4-bit ADPCM IMA WAV files are supported

这让我觉得转码在内部使用了ffmpeg。

我可以先使用ffmpeg使其成为mp4,然后使用转码来稳定视频,但之后会重新编码两次,我希望避免使用。

这就是mplayer关于我的MOV文件的说法:

MPlayer2 2.0-701-gd4c5b7f-2ubuntu2 (C) 2000-2012 MPlayer Team
Cannot open file '/home/koem/.mplayer/input.conf': No such file or directory
Failed to open /home/koem/.mplayer/input.conf.
Cannot open file '/etc/mplayer/input.conf': No such file or directory
Failed to open /etc/mplayer/input.conf.

Playing 1-original.MOV.
Detected file format: QuickTime / MOV (libavformat)
[lavf] stream 0: video (h264), -vid 0
[lavf] stream 1: audio (adpcm_ima_wav), -aid 0, -alang eng
Clip info:
 major_brand: qt  
 minor_version: 537921536
 compatible_brands: qt  caqv
 creation_time: 2017-01-02 23:31:38
Load subtitles in .
Failed to open VDPAU backend libvdpau_i965.so: cannot open shared object file: No such file or directory
[vdpau] Error when calling vdp_device_create_x11: 1
[ass] auto-open
Selected video codec: H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 [libavcodec]
Selected audio codec: ADPCM IMA WAV [libavcodec]
AUDIO: 44100 Hz, 2 ch, s16le, 352.8 kbit/25.00% (ratio: 44100->176400)
AO: [pulse] 44100Hz 2ch s16le (2 bytes per sample)
Starting playback...
VIDEO:  1920x1080  29.970 fps  15940.0 kbps (1992.5 kB/s)
VO: [xv] 1920x1080 => 1920x1080 Planar YV12 
Colorspace details not fully supported by selected vo.
A:   1.1 V:   1.1 A-V: -0.000 ct:  0.000   0/  0 16%  8%  1.6% 0 0 

Exiting... (Quit)

如何在不使用ffmpeg的情况下使用转码工作?

1 个答案:

答案 0 :(得分:3)

FFmpeg有一个deshake和一个stabilization过滤器。如果您没有,请获取新的binary

要继续使用现有的二进制文件,请运行

ffmpeg -i in.MOV -vcodec copy out.mp4

这将跳过视频重新编码。