Here is a bat file for batch converting mp3 to m4a if anyone wants to make anything else streamable for PS3, use it in conjunction with FFMPEG and a cover.jpg.
Usage: Just put the bat in a folder full of mp3s, along with FFMPEG.exe and a cover.jpg of your choice. (144p to 240p recommended), then double-click the bat file.
Thanks again @xps3riments
Code:
@echo off
for %%G in (*.mp3) do ffmpeg -loop 1 -i cover.jpg -i %%~nxG -c:a aac -ar 48000 -c:v h264 -pix_fmt yuv420p -vf "fps=24/1.001" -shortest -strict -2 %%~nxG.mp4
Usage: Just put the bat in a folder full of mp3s, along with FFMPEG.exe and a cover.jpg of your choice. (144p to 240p recommended), then double-click the bat file.
Thanks again @xps3riments