PS3 Is there a way to get title with titleid from PSN servers?

jjkkyu

Developer
As those games which have patches, we can parse the game title from patch-list xml.
For those which do not have patches, does the server store the game title in some place?
 
I think the closest thing would be getting the info from the TMDB, it works for PS3 and PS4.
Here you can find some notes for ps4, but it's the same for ps3, except the format is XML:
https://github.com/bucanero/apollo-ps4/issues/69

ps3: https://www.psdevwiki.com/ps3/Keys#TMDB_Key

Thanks, I managed to generate the tmdb xml link.
I would like to build an offline title database for ps3, and I will try to download all the tmdb xml first.
If you know someone else has done the similar work before, please let me know. In other case, I will keep going forward.
 
Thanks, I managed to generate the tmdb xml link.
I would like to build an offline title database for ps3, and I will try to download all the tmdb xml first.
If you know someone else has done the similar work before, please let me know. In other case, I will keep going forward.

I don't know if anyone has built something like that... I do remember that on Bruteforce Savedata by @aldostools there was a .txt file with a lot of "TITLEID=Name" , so I think it's a kind of similar database, but no idea if it was a complete set, or not. Also I think it also had some other stuff, like PSP titles.

Also, I do remember finding on Github some repo with a ton of XMLs from ps3, but I think those were the "update.xml" (not from TMDB) so only for titles with updates. Edit: https://github.com/bucanero/psndb
 
I don't know if anyone has built something like that... I do remember that on Bruteforce Savedata by @aldostools there was a .txt file with a lot of "TITLEID=Name" , so I think it's a kind of similar database, but no idea if it was a complete set, or not. Also I think it also had some other stuff, like PSP titles.

Also, I do remember finding on Github some repo with a ton of XMLs from ps3, but I think those were the "update.xml" (not from TMDB) so only for titles with updates. Edit: https://github.com/bucanero/psndb

Thanks, I will check these info first.
 
This is the TXT commented by @bucanero.

It was made by me collecting manually the names from several sources for years. It may have errors, but is better than nothing ;)

I used it for various of my tools.

Thanks. More than 15000 entries. I will try to grab the tmdb infos and hope that will not take long period.
Anyway, your file can be the best supplementary.
 
I don't know if anyone has built something like that... I do remember that on Bruteforce Savedata by @aldostools there was a .txt file with a lot of "TITLEID=Name" , so I think it's a kind of similar database, but no idea if it was a complete set, or not. Also I think it also had some other stuff, like PSP titles.

Also, I do remember finding on Github some repo with a ton of XMLs from ps3, but I think those were the "update.xml" (not from TMDB) so only for titles with updates. Edit: https://github.com/bucanero/psndb

I checked this link: https://github.com/bucanero/psndb
And confirmed they are TMDB files. People have already grab that before.

I still decided to grab all of them again and have created batch tool to download the xml files.
Downloading patch xml is fast while for tmdb is a bit slow. It might take weeks to accomplish.
 
Last edited:
Hi, Bro
I found the tmdb link does not work for psx/ps2/psp stuff. I guest they use a different key to generate sha1 hash?

honestly no idea, I think this might also be related to internal playstation store things. I know that PS4 uses the same key and the only difference is .json instead of .xml , but other platforms like psp / vita don't work with that structure. Maybe reversing some store binaries from PSP or vita could provide some ideas, but of course it's just an idea.
 
honestly no idea, I think this might also be related to internal playstation store things. I know that PS4 uses the same key and the only difference is .json instead of .xml , but other platforms like psp / vita don't work with that structure. Maybe reversing some store binaries from PSP or vita could provide some ideas, but of course it's just an idea.

Got managed to grab PSX/PS2 tmdb. Should use the original titleid for PSX/PS2, such as SLUSXXXX, not NPUJXXXXX.
Still no idea for PSP stuff.
 
Got managed to grab PSX/PS2 tmdb. Should use the original titleid for PSX/PS2, such as SLUSXXXX, not NPUJXXXXX.
Still no idea for PSP stuff.

so PSX / PS2 use the same tmdb key too? is the URL the same too? I assume xml? (probably json only for PS4, ps5 and up)
 

Similar threads

Back
Top