├── README.md ├── resource ├── bin │ ├── .gitkeep │ ├── SFDmuxers │ │ ├── CRAFTmuxer_V2.98 │ │ │ ├── TMPGLib.dll │ │ │ ├── TMPGLibP3.dll │ │ │ ├── TMPGLibP4.dll │ │ │ ├── TMPGLibP4P.dll │ │ │ ├── docs_JPN.zip │ │ │ ├── sfdcrfc.exe │ │ │ └── sfdcrfg.cnt │ │ ├── CryTools_V2_muxer │ │ │ └── sfdmux.exe │ │ ├── SFDmux_V1.07 │ │ │ └── SFDMUX.EXE │ │ └── SofdecStream1_muxer │ │ │ ├── LICENSE.txt │ │ │ ├── Readme.md │ │ │ └── SFD_Muxer.exe │ ├── aix2adx01 │ │ ├── LICENSE.txt │ │ ├── aix.txt │ │ ├── aix2adx.c │ │ ├── aix2adx.exe │ │ └── hist.txt │ ├── blank.sfa │ ├── blank.sfa.7z │ ├── ffmpeg │ │ └── .gitkeep │ ├── legaladx │ │ ├── legaladx-license.txt │ │ └── legaladx.exe │ ├── wget.exe │ └── wget_gpl-3.0.txt ├── docs │ └── documentation.pdf └── img │ └── questionmark.png └── sourcecode ├── SFDCreator.py ├── SFDExtractor.py ├── SFDPlayer.py ├── SFDVersionDetector.py ├── check_for_ffmpeg.py ├── resource folder must be present with these files for programs to work.txt └── updater.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/README.md -------------------------------------------------------------------------------- /resource/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resource/bin/SFDmuxers/CRAFTmuxer_V2.98/TMPGLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/SFDmuxers/CRAFTmuxer_V2.98/TMPGLib.dll -------------------------------------------------------------------------------- /resource/bin/SFDmuxers/CRAFTmuxer_V2.98/TMPGLibP3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/SFDmuxers/CRAFTmuxer_V2.98/TMPGLibP3.dll -------------------------------------------------------------------------------- /resource/bin/SFDmuxers/CRAFTmuxer_V2.98/TMPGLibP4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/SFDmuxers/CRAFTmuxer_V2.98/TMPGLibP4.dll -------------------------------------------------------------------------------- /resource/bin/SFDmuxers/CRAFTmuxer_V2.98/TMPGLibP4P.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/SFDmuxers/CRAFTmuxer_V2.98/TMPGLibP4P.dll -------------------------------------------------------------------------------- /resource/bin/SFDmuxers/CRAFTmuxer_V2.98/docs_JPN.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/SFDmuxers/CRAFTmuxer_V2.98/docs_JPN.zip -------------------------------------------------------------------------------- /resource/bin/SFDmuxers/CRAFTmuxer_V2.98/sfdcrfc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/SFDmuxers/CRAFTmuxer_V2.98/sfdcrfc.exe -------------------------------------------------------------------------------- /resource/bin/SFDmuxers/CRAFTmuxer_V2.98/sfdcrfg.cnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/SFDmuxers/CRAFTmuxer_V2.98/sfdcrfg.cnt -------------------------------------------------------------------------------- /resource/bin/SFDmuxers/CryTools_V2_muxer/sfdmux.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/SFDmuxers/CryTools_V2_muxer/sfdmux.exe -------------------------------------------------------------------------------- /resource/bin/SFDmuxers/SFDmux_V1.07/SFDMUX.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/SFDmuxers/SFDmux_V1.07/SFDMUX.EXE -------------------------------------------------------------------------------- /resource/bin/SFDmuxers/SofdecStream1_muxer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/SFDmuxers/SofdecStream1_muxer/LICENSE.txt -------------------------------------------------------------------------------- /resource/bin/SFDmuxers/SofdecStream1_muxer/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/SFDmuxers/SofdecStream1_muxer/Readme.md -------------------------------------------------------------------------------- /resource/bin/SFDmuxers/SofdecStream1_muxer/SFD_Muxer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/SFDmuxers/SofdecStream1_muxer/SFD_Muxer.exe -------------------------------------------------------------------------------- /resource/bin/aix2adx01/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/aix2adx01/LICENSE.txt -------------------------------------------------------------------------------- /resource/bin/aix2adx01/aix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/aix2adx01/aix.txt -------------------------------------------------------------------------------- /resource/bin/aix2adx01/aix2adx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/aix2adx01/aix2adx.c -------------------------------------------------------------------------------- /resource/bin/aix2adx01/aix2adx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/aix2adx01/aix2adx.exe -------------------------------------------------------------------------------- /resource/bin/aix2adx01/hist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/aix2adx01/hist.txt -------------------------------------------------------------------------------- /resource/bin/blank.sfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/blank.sfa -------------------------------------------------------------------------------- /resource/bin/blank.sfa.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/blank.sfa.7z -------------------------------------------------------------------------------- /resource/bin/ffmpeg/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resource/bin/legaladx/legaladx-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/legaladx/legaladx-license.txt -------------------------------------------------------------------------------- /resource/bin/legaladx/legaladx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/legaladx/legaladx.exe -------------------------------------------------------------------------------- /resource/bin/wget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/wget.exe -------------------------------------------------------------------------------- /resource/bin/wget_gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/bin/wget_gpl-3.0.txt -------------------------------------------------------------------------------- /resource/docs/documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/docs/documentation.pdf -------------------------------------------------------------------------------- /resource/img/questionmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/resource/img/questionmark.png -------------------------------------------------------------------------------- /sourcecode/SFDCreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/sourcecode/SFDCreator.py -------------------------------------------------------------------------------- /sourcecode/SFDExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/sourcecode/SFDExtractor.py -------------------------------------------------------------------------------- /sourcecode/SFDPlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/sourcecode/SFDPlayer.py -------------------------------------------------------------------------------- /sourcecode/SFDVersionDetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/sourcecode/SFDVersionDetector.py -------------------------------------------------------------------------------- /sourcecode/check_for_ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/sourcecode/check_for_ffmpeg.py -------------------------------------------------------------------------------- /sourcecode/resource folder must be present with these files for programs to work.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sourcecode/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Firebow59/SofdecVideoTools/HEAD/sourcecode/updater.py --------------------------------------------------------------------------------