Skip to content

Commit 69cae68

Browse files
committed
Fix code highlight for batch script
1 parent f2b1302 commit 69cae68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ffmpeg-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ ffmpeg -i input.mp4 -map 0 -vf "scale=1920:1080:force_original_aspect_ratio=decr
130130

131131
Bulk conversion using Windows batch scripting. Should probably use something better like PowerShell
132132

133-
```bat
133+
```batch
134134
FOR /F "tokens=*" %G IN ('dir /b *.mp3') DO ffmpeg -i "%G" -b:a 48k "%~nG.opus"
135135
```
136136

0 commit comments

Comments
 (0)