File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ Download FFmpeg to your computer for Windows => https://github.com/BtbN/FFmpeg-B
35
35
36
36
> Getting next 3 seconds starting from 3 seconds
37
37
38
- ` ffmpeg ffmpeg -i source.mp4 -ss 3 -t 3 source3seconds.mp4 `
38
+ ` ffmpeg -i source.mp4 -ss 3 -t 3 source3seconds.mp4 `
39
39
40
40
<li ><h2 >Cut video from a specific second to the end of the video</li ></h2 >
41
41
42
- ` ffmpeg ffmpeg -i source.mp4 -ss 3 output3seconds.mp4 `
42
+ ` ffmpeg -i source.mp4 -ss 3 output3seconds.mp4 `
43
43
44
- ` ffmpeg ffmpeg -i source.mp4 -ss 00:00:03 output3seconds.mp4 `
44
+ ` ffmpeg -i source.mp4 -ss 00:00:03 output3seconds.mp4 `
45
45
46
46
47
47
<li ><h2 >Convert video to animated gif.</h2 ></li >
@@ -63,7 +63,7 @@ Download FFmpeg to your computer for Windows => https://github.com/BtbN/FFmpeg-B
63
63
64
64
<li ><h2 >Adding a watermark to the middle of the screen.</h2 ></li >
65
65
66
- ` ffmpeg.exe -i source.mp4 -i logo.png -filter_complex "overlay = (main_w - overlay_w)/2:(main_h - overlay_h) / 2" watermark.mp4 `
66
+ ` ffmpeg -i source.mp4 -i logo.png -filter_complex "overlay = (main_w - overlay_w)/2:(main_h - overlay_h) / 2" watermark.mp4 `
67
67
68
68
<li ><h2 >Adding a watermark to a specific point of the screen.</h2 > </li >
69
69
@@ -79,7 +79,7 @@ Download FFmpeg to your computer for Windows => https://github.com/BtbN/FFmpeg-B
79
79
80
80
<li ><h2 >Take a screenshot from every 1 second of the video</h2 > </li >
81
81
82
- ` ffmpeg.exe -i wm.mp4 -r 1 -f image2 screenshot-%03d.jpg `
82
+ ` ffmpeg -i wm.mp4 -r 1 -f image2 screenshot-%03d.jpg `
83
83
84
84
<li ><h2 >Merging two separate audio files.</h2 > </li >
85
85
Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ Adreslerinden indirdikten sonra terminal üzerinden bin klasörüne girerek `ffm
35
35
36
36
> 3 . saniyeden başlayarak sonraki 3 saniye alınıyor
37
37
38
- ` ffmpeg ffmpeg -i source.mp4 -ss 3 -t 3 source3seconds.mp4 `
38
+ ` ffmpeg -i source.mp4 -ss 3 -t 3 source3seconds.mp4 `
39
39
40
40
<li ><h2 > Belirli bir saniyeden videonun sonuna kadar videoyu kesmek.</li ></h2 >
41
41
42
- ` ffmpeg ffmpeg -i source.mp4 -ss 3 output3seconds.mp4 `
42
+ ` ffmpeg -i source.mp4 -ss 3 output3seconds.mp4 `
43
43
44
- ` ffmpeg ffmpeg -i source.mp4 -ss 00:00:03 output3seconds.mp4 `
44
+ ` ffmpeg -i source.mp4 -ss 00:00:03 output3seconds.mp4 `
45
45
46
46
47
47
<li ><h2 > Videoyu animasyonlu gife çevirmek.</h2 ></li >
@@ -66,7 +66,7 @@ Adreslerinden indirdikten sonra terminal üzerinden bin klasörüne girerek `ffm
66
66
67
67
<li ><h2 >Ekran ortasına watermark filigran eklemek.</h2 ></li >
68
68
69
- ` ffmpeg.exe -i source.mp4 -i logo.png -filter_complex "overlay = (main_w - overlay_w)/2:(main_h - overlay_h) / 2" watermark.mp4 `
69
+ ` ffmpeg -i source.mp4 -i logo.png -filter_complex "overlay = (main_w - overlay_w)/2:(main_h - overlay_h) / 2" watermark.mp4 `
70
70
71
71
<li ><h2 > Ekranın belirli bir noktasına watermark filigran eklemek.</h2 > </li >
72
72
@@ -82,7 +82,7 @@ Adreslerinden indirdikten sonra terminal üzerinden bin klasörüne girerek `ffm
82
82
83
83
<li ><h2 > Videodaki her 1 saniyeden ekran görüntüsü çıkarmak</h2 > </li >
84
84
85
- ` ffmpeg.exe -i wm.mp4 -r 1 -f image2 screenshot-%03d.jpg `
85
+ ` ffmpeg -i wm.mp4 -r 1 -f image2 screenshot-%03d.jpg `
86
86
87
87
<li ><h2 > İki ayrı ses dosyasını birleştirmek.</h2 > </li >
88
88
You can’t perform that action at this time.
0 commit comments