We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1012249 + 713d8be commit 75c5701Copy full SHA for 75c5701
content/docs/wiki/general/audio-file-format.md
@@ -79,3 +79,7 @@ But the in experiments used encoder did not have an obvious feature to do this.
79
# Audio file extraction with Linux OS
80
- Remove Header of the file with ´dd bs=4096 skip=1 if=500304E0 of=trim.ogg´
81
- then just use ffmpeg to convert it into mp3 ´ffmpeg -i trim.ogg done.mp3´
82
+
83
+# Audio file extraction with Windows
84
+- Remove Header of the file with: powershell -Command "$in = [System.IO.File]::OpenRead('00000000'); $out = [System.IO.File]::Create('trim.ogg'); $in.Seek(4096, 'Begin') | Out-Null; $in.CopyTo($out); $in.Close(); $out.Close()"
85
+- then just as in Linux use ffmpeg to convert it into mp3: ffmpeg -i "trim.ogg" -ar 44100 -ac 2 -b:a 96k -f mp3 -c:a libmp3lame "done.mp3"
0 commit comments