JavaScript required
We’re sorry, but Coda doesn’t work properly without JavaScript enabled.
Skip to content
Gallery
Ghi chú đầu việc Viettel
Ghi chú đầu việc
21/11/2023
22/11/2023
23/11/2023
Phân tích chức năng
Học Đào tạo văn hoá
24/11/2023
25/11/2023
27/11/2023
29/11/2023
4/12/2023
5/12/2023
7/12/2023
11/12/2023
12/12/2023
13/11/2023
14/12/2023
19/12/2023
20/12/2023
26/12/2023
17/01/2024
26/01/2024
30/1/2024
7/2/2024
17/02/2024
18/03/2024
28/3/2024
4/4/2024
11/6/2024
More
Share
Explore
29/11/2023
Sure! Here are a few examples of how you can use FFmpeg:
1. Convert a video file to a different format: ```bash ffmpeg -i input.mp4 output.avi ```
2. Extract audio from a video file: ```bash ffmpeg -i input.mp4 -vn output.mp3 ```
3. Convert a video to a specific resolution and bitrate: ```bash ffmpeg -i input.mp4 -s 1280x720 -b:v 1500k output.mp4 ```
4. Concatenate multiple video files into one: ```bash ffmpeg -i input1.mp4 -i input2.mp4 -filter_complex "[0:v:0][0:a:0][1:v:0][1:a:0]concat=n=2:v=1:a=1[outv][outa]" -map "[outv]" -map "[outa]" output.mp4 ```
5. Extract a specific portion of a video: ```bash ffmpeg -i input.mp4 -ss 00:01:30 -t 00:00:30 -c copy output.mp4 ```
6. Create a video slideshow from images: ```bash ffmpeg -framerate 1/5 -i image%d.jpg -c:v libx264 -r 30 -pix_fmt yuv420p slideshow.mp4 ```
These are just a few examples, and FFmpeg offers many more features and options for manipulating multimedia files.
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
Ctrl
P
) instead.