markdown FFmpeg的

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown FFmpeg的相关的知识,希望对你有一定的参考价值。

### Duplicate frames /w wrong 

Fixing to be 10fps

```ffmpeg -i INPUT.flv -r 10 -vf "mpdecimate,setpts=N/(10*TB)" OUTPUT.mp4```

> `N`→ The count of the input frame for video or the number of consumed samples, not including the current frame for audio, starting from 0.  
  `TB`→ The timebase of the input timestamps.

[source](http://ffmpeg.org/ffmpeg-all.html#toc-setpts_002c-asetpts)
### Extract bluray audio
```
ffmpeg -i VIDEO.m2ts -map 0:<stream> -acodec <pcm_s24le|libmp3lame> audio.<wav|mp3>
```
### Copy chapters from one file to another
```
ffmpeg -i video_w_chapters.mp4 -i video.mp4 -map 1 -map_metadata 0 -c copy output.mp4
```
> `-map 1`→ Select `video.mp4` as source  
  `-map_metadata 0`→ Select `video_w_chapters.mp4` as metadata (chapters) source

以上是关于markdown FFmpeg的的主要内容,如果未能解决你的问题,请参考以下文章

markdown FFmpeg的

markdown FFmpeg的

markdown 命令使用ffmpeg查找和转换

markdown 使用xargs生成多个ffmpeg进程

markdown FFMPEG Comandos

markdown ffmpeg.md