Skip to content

Commit 75c5701

Browse files
authored
Merge pull request #67 from rstoll21/patch-1
Update audio-file-format.md
2 parents 1012249 + 713d8be commit 75c5701

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

content/docs/wiki/general/audio-file-format.md

+4
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,7 @@ But the in experiments used encoder did not have an obvious feature to do this.
7979
# Audio file extraction with Linux OS
8080
- Remove Header of the file with ´dd bs=4096 skip=1 if=500304E0 of=trim.ogg´
8181
- 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

Comments
 (0)