Could use some help demuxing SFD files #5
-
|
Hi, I was wondering if I could get some help demuxing some SFD files? The files I am trying to demux are from the Xbox version of Sonic Heroes. I am not exactly sure what command line I should enter to extract the mpg/adx files from it. If you are able to help, that will be much appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
You can demux SFDs with FFmpeg no problem. Just checked on one cutscene from the Xbox version. Demuxing video: Demuxing audio (4 streams): If there's |
Beta Was this translation helpful? Give feedback.

You can demux SFDs with FFmpeg no problem. Just checked on one cutscene from the Xbox version.
As for audio, some files are ADX and some are AIX, keep that in mind.
Demuxing video:
ffmpeg -loglevel quiet -i E0000_XD.sfd -an -c copy E0000_XD.m2vDemuxing audio (4 streams):
ffmpeg -loglevel quiet -i "E0000_XD.sfd" -vn -c copy -map 0:a:0 E0000_XD_a0.adxffmpeg -loglevel quiet -i "E0000_XD.sfd" -vn -c copy -map 0:a:1 E0000_XD_a1.adxffmpeg -loglevel quiet -i "E0000_XD.sfd" -vn -c copy -map 0:a:2 E0000_XD_a2.adxffmpeg -loglevel quiet -i "E0000_XD.sfd" -vn -c copy -map 0:a:3 E0000_XD_a3.adxIf there's
AIXFat the start of the file, then it's AIX so you can rename the file or play it with ffpla…