Search found 3 matches

by MsULTIMATEMAX
July 28th, 2023, 1:52 pm
Forum: Graphics/GPU
Topic: Batch STR Converter
Replies: 1
Views: 5756

Batch STR Converter

https://www.youtube.com/watch?v=ufdI3hWB8lY 1) "AVI2STR" is a batch command derived from "PsxAvEnc" that allows conversion of an uncompressed ".AVI" video file to the ".STR" video format supported by PlayStation video games. 2) Enter the ".AVI" vide...
by MsULTIMATEMAX
July 28th, 2023, 1:34 pm
Forum: Members Downloads
Topic: MKPSXISO - A PlayStation ISO Maker to Replace BUILDCD
Replies: 65
Views: 146663

Re: MKPSXISO - A PlayStation ISO Maker to Replace BUILDCD

I've done some batch codes. Bin_Dump_Extract cd %~dp0 for %%i in (*.bin) do start /wait dumpsxiso.exe -x "%%~ni\Extracted" -s "%%~ni\XMLFile.xml" "%%~ni.bin" pause Bin_Make_Image cd %~dp0 for %%i in (*.bin) do start /wait mkpsxiso.exe -y -o "%%~ni\%%~ni_NewImage.bi...
by MsULTIMATEMAX
November 17th, 2022, 4:03 pm
Forum: Graphics/GPU
Topic: How to encode STR video files
Replies: 24
Views: 123249

Re: How to encode STR video files

I've done some batch codes that works with "input" and "output" folders. Video+Audio (.avi) @echo off cd %~dp0 mkdir Output for %%a in (input\*.*) do ffmpeg.exe -i "%%a" -vcodec rawvideo -s 320x240 -r 15 -acodec pcm_s16le "output\%%~na.avi" pause Audio (.wav) ...