Skip to content

Instantly share code, notes, and snippets.

@Luro02
Created January 24, 2018 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Luro02/ab50b98c9cf91ea77fc910df35b15cda to your computer and use it in GitHub Desktop.
Save Luro02/ab50b98c9cf91ea77fc910df35b15cda to your computer and use it in GitHub Desktop.
some scripts that help extracting and converting some file formats (avc video files and farc files)
for %%i in (*.avc) do (
ffmpeg -i "%%i" -codec copy "%%~ni.mp4"
)
:: If you need it to extract the FARC Files from Hatsune Miku Project Diva F2 then screw it !
:: in the PSARC are around 7k farc files
:: and not a single video, but a ton of shaders and other stuff
:: download quickbms from here:
:: http://aluigi.altervista.org/papers/quickbms.zip
:: and download + rename this file to farc.bms:
:: http://aluigi.altervista.org/bms/virtua_fighter_5.bms
@echo off
cd farc
for %%i in (*.farc) do (
mkdir %%~ni
quickbms farc.bms "%%i" "%%~ni"
)
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment