[RELEASE] PS3 Podcast Player - Enabler

PS3 [Release] Podcast Player - Enabler (CFW/HEN) v1.00

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.

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 ;)
 

Attachments

I'll have to check this out later. It would be cool to stream some Coast to Coast AM on my PS3.

Thank you!
 
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.

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 ;)
I haven't seen it done, but could it be possible to load an xml from a github page? people don't have much use for a podcast tool offline and it could be updated dynamically instead of releasing new xmls for updated versions.
 
I haven't seen it done, but could it be possible to load an xml from a github page? people don't have much use for a podcast tool offline and it could be updated dynamically instead of releasing new xmls for updated versions.

Not possible as far as I know. I was planning to add an update icon to the blindboy podcast pkg in v1.00, so it just needs to be clicked.
 
Not possible as far as I know. I was planning to add an update icon to the blindboy podcast pkg in v1.00, so it just needs to be clicked.

I'm on the Blindboy 5th podcast.

I made some, but in my language, i think people will not be interested in it :P
 
<Query class="type:x-xmb/folder-pixmap" key="podcast_001" src="xmb://XM/podcast.xml#main"/>
Not possible as far as I know. I was planning to add an update icon to the blindboy podcast pkg in v1.00, so it just needs to be clicked.

<Query class="type:x-xmb/folder-pixmap" key="podcast_001" src="xmb://
http://xmbmods.com/audio/podcasts/podcast02.xml#main"/>

<Query class="type:x-xmb/folder-pixmap" key="podcast_002" src="xmb://
http://xmbmods.com/audio/podcasts/podcast02.xml#main"/>

Could it work?
 
Not as far as I know. If it is possible I have never found the correct syntax.
I uploaded an xml to github. this is the code I used to access it from the xmb, this works fine
I am SO using this for other projects!
Code:
            <Query class="type:x-xmb/folder-pixmap" key="youtube_001" src="http://github.com/PhoenixARC/PhoenixDownloader/blob/master/youtube.xml#phoenix"/>
 
Working great on my end. Now I just need to figure out how to add my own.
Looking forward to the video streaming enabler as well
 

Attachments

  • screenshot_2019_09_11_18_29_19.jpg
    screenshot_2019_09_11_18_29_19.jpg
    114.8 KB · Views: 203
I uploaded an xml to github. this is the code I used to access it from the xmb, this works fine
I am SO using this for other projects!
Code:
            <Query class="type:x-xmb/folder-pixmap" key="youtube_001" src="http://github.com/PhoenixARC/PhoenixDownloader/blob/master/youtube.xml#phoenix"/>
WOW, that is major, not sure why i never tried it like that. Nice discovery. :D

@ShaolinAssassin @sandungas @LuanTeles
 
WOW, that is major, not sure why i never tried it like that. Nice discovery. :D

@ShaolinAssassin @sandungas @LuanTeles
thnks but i think i just figured out why it hasn't been used much. tried to port a different xml of mine to download mods and it comes up empty. so seems this does have it's limits, but glad it's avaliable now.
if you come up with an idea let me know.
https://github.com/PhoenixARC/PhoenixDownloader/blob/master/Phoenix_Downloader.xml
that's the xml i was trying to reference
 
@PhoenixARC nice find bro, so we can make a repo now, without needing to update pkgs,

Using a master xml

Conteining Entries to 001 to 999

and users can upload the xml and covers assigning it to different slots
 
I uploaded an xml to github. this is the code I used to access it from the xmb, this works fine
I am SO using this for other projects!
Code:
            <Query class="type:x-xmb/folder-pixmap" key="youtube_001" src="http://github.com/PhoenixARC/PhoenixDownloader/blob/master/youtube.xml#phoenix"/>

Hmm, not working here. It just opens an empty folder.
 
I uploaded an xml to github. this is the code I used to access it from the xmb, this works fine
I am SO using this for other projects!
Code:
            <Query class="type:x-xmb/folder-pixmap" key="youtube_001" src="http://github.com/PhoenixARC/PhoenixDownloader/blob/master/youtube.xml#phoenix"/>
What exactly did you manage to get loading from the internet?
 
What exactly did you manage to get loading from the internet?
The thing that was successful? videos, want to make my entire video library accesable from the xmb. but seems downloading pgk files is a no-go. i'll try 2 rewrite a new xml in the style of the one that worked and hope for the best.
 
The thing that was successful? videos, want to make my entire video library accesable from the xmb. but seems downloading pgk files is a no-go. i'll try 2 rewrite a new xml in the style of the one that worked and hope for the best.
Im just wondering is this method working at all?

I get nothing with that xml category_tv.xml, are you sure its working and you have not mixed up files, you have lots of queries in there, try it with just one query to an xml on the internet.
 
Try this, it just has one query for your xml on github.:

Code:
<Query class="type:x-xmb/folder-pixmap" key="youtube_001" src="http://github.com/PhoenixARC/PhoenixDownloader/blob/master/youtube.xml#phoenix"/>
 

Attachments

Try this, it just has one query for your xml on github.:

Code:
<Query class="type:x-xmb/folder-pixmap" key="youtube_001" src="http://github.com/PhoenixARC/PhoenixDownloader/blob/master/youtube.xml#phoenix"/>
I feel stupid now, forgot to change the key. it was reading the one i had.
 
Back
Top