UMD file system access

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Vampire
Posts: 138
Joined: Tue Apr 12, 2005 8:16 am

UMD file system access

Post by Vampire »

Code: Select all

<html>
<head>
<title>UMD</title>
</head>
<body background="file&#58;//disc0&#58;/PSP_GAME/PIC1.PNG">
<img src="file&#58;//disc0&#58;/PSP_GAME/ICON0.PNG">
<img src="file&#58;//disc0&#58;/PSP_GAME/PIC0.PNG">
</body>
</html>
or

Code: Select all

<html>
<head>
<title>UMD</title>
</head>
<body background="file&#58;//disc0&#58;/UMD_VIDEO/PIC1.PNG">
<img src="file&#58;//disc0&#58;/UMD_VIDEO/ICON0.PNG">
<img src="file&#58;//disc0&#58;/UMD_VIDEO/PIC0.PNG">
</body>
</html>
or

Code: Select all

<html>
<head>
<title>UMD</title>
</head>
<body background="file&#58;//disc0&#58;/UMD_AUDIO/PIC1.PNG">
<img src="file&#58;//disc0&#58;/UMD_AUDIO/ICON0.PNG">
<img src="file&#58;//disc0&#58;/UMD_AUDIO/PIC0.PNG">
</body>
</html>
Last edited by Vampire on Sat May 07, 2005 7:41 am, edited 2 times in total.
Awhite
Posts: 55
Joined: Wed Feb 23, 2005 3:21 am

Post by Awhite »

Works. Perfectly.
I even changed the disc, and put inside Bleach,and RR :P it worked again! They have same structure, at least for the "preview" images :P
Ioannis KarAvas
reakt
Posts: 22
Joined: Fri May 06, 2005 8:35 pm
Location: Basingstoke, UK

Post by reakt »

Great job Vampire!
Very interesting. Unfortunately I'm not able to check, but is it possible to browse the contents of the inserted UMD...

Code: Select all

<html>
<head>
<title>Browse UMD</title>
</head>
<body>
<a href="file&#58;//disc0&#58;/">Browse UMD!</a>
</body>
</html>
Perhaps disc0 can be replaced by disc1 or another device name for memory stick access too.
Vampire
Posts: 138
Joined: Tue Apr 12, 2005 8:16 am

Post by Vampire »

reakt wrote:Great job Vampire!
Very interesting. Unfortunately I'm not able to check, but is it possible to browse the contents of the inserted UMD...

Code: Select all

<html>
<head>
<title>Browse UMD</title>
</head>
<body>
<a href="file&#58;//disc0&#58;/">Browse UMD!</a>
</body>
</html>
Perhaps disc0 can be replaced by disc1 or another device name for memory stick access too.
browsing the umd doesent work.
i'm working on memory stick access.
Warren
Posts: 175
Joined: Sat Jan 24, 2004 8:26 am
Location: San Diego, CA

Post by Warren »

Try msstore0: or msroot: I can't remember which it is and I don't have my network setup atm.
Pit0711
Posts: 54
Joined: Thu Mar 24, 2005 5:45 am
Location: Old Europe -Germany-

Post by Pit0711 »

lol :-D
Vampire
Posts: 138
Joined: Tue Apr 12, 2005 8:16 am

Post by Vampire »

Code: Select all

<html>
<head>
<title>MS</title>
</head>
<body background="file&#58;//ms0&#58;/PSP/SAVEDATA/UCUS98612P0000/PIC1.PNG">
<img src="file&#58;//ms0&#58;/PSP/SAVEDATA/UCUS98612P0000/ICON0.PNG">
</body>
</html>
or

Code: Select all

<html>
<head>
<title>MS</title>
</head>
<body background="file&#58;//fatms0&#58;/PSP/SAVEDATA/UCUS98612P0000/PIC1.PNG">
<img src="file&#58;//fatms0&#58;/PSP/SAVEDATA/UCUS98612P0000/ICON0.PNG">
</body>
</html>
Last edited by Vampire on Sat May 07, 2005 6:52 am, edited 1 time in total.
Awhite
Posts: 55
Joined: Wed Feb 23, 2005 3:21 am

Post by Awhite »

:( I was just going to post this :P fatms0 is the ms :P

Although i like it this way:
<html>
<head>
<title>Files off Memory Stick</title>
</head>
<body>

<img src="file://fatms0:/PSP/PHOTO/Awhite.jpg">

</body>
</html>
I guess html files work too.
Ioannis KarAvas
LiquidIce
Posts: 55
Joined: Mon Apr 04, 2005 1:15 am
Contact:

Post by LiquidIce »

I wonder if it is possible to do a form post, to upload UMD files to a webserver??

According to
http://www.psphacks.net/forums/viewtopic.php?t=671

The PSP does support
Content-Type: application/x-www-form-urlencoded

I must be off to work now, but i'll play around with this later tonight.

Thanks Vampire!!
Awhite
Posts: 55
Joined: Wed Feb 23, 2005 3:21 am

Post by Awhite »

I think it does, but using a form with input="file" , shows a browse button which doesn't work :( also you can't edit the text box :(
Ioannis KarAvas
pedroleite
Posts: 39
Joined: Sun Apr 10, 2005 8:31 am

Post by pedroleite »

You can just assign a value="...." parameter to specify a default file...

Will only try later.

Also you could try binding the value from javascript if this isn't parsed from the HTML...

I wonder what parser Sony based it's browser... from this one could explore much wider ranges.

Also somewhere there are mentions to SCREAM, and audio player like headers from the browser (from a strings analysis of a binary).

Anyone tried a Shoutcast server with the PSP?
Falkon
Posts: 5
Joined: Thu Apr 28, 2005 1:36 pm

Post by Falkon »

So, if the PSP recognizes HTML, would it be possible to utilize more advanced languages like XML, DHTML, etc? Technically, you could build proggies liek this ^.^ take time, but it would be pretty cool to create a couple simple games..
etx
Posts: 33
Joined: Sat Apr 02, 2005 12:54 am
Location: Detroit

Post by etx »

Falkon wrote:So, if the PSP recognizes HTML, would it be possible to utilize more advanced languages like XML, DHTML, etc? Technically, you could build proggies liek this ^.^ take time, but it would be pretty cool to create a couple simple games..
No it's not that advanced. It's got a very limited javascript lib. I'd rather write native bins anyways. ;)
pyro42
Posts: 11
Joined: Fri May 06, 2005 11:03 pm

Post by pyro42 »

forgive my ignorance... i know just enough to be annoying...

but would there be a way to copy say..

file://disc0:/PSP_GAME/ICON0.PNG
to
file://fatms0:/PSP/PHOTO/ICON0.PNG

using maybe javascript or something? i'm not familiar with javascript myself, and only know enough html to get by, but i hardly doubt the javascript engine is very secure.

of course the ideal extension of this would to be able to download and save content to your memory card from the web without the PC in the middle. or now that i think about it.. a more than ideal way to dump a UMD, provided of course you had the 2gb card to dump it to
Awhite
Posts: 55
Joined: Wed Feb 23, 2005 3:21 am

Post by Awhite »

If javascript was able to do that, half of the pcs online would get hacked everyday..anyway.. back to work...

I'm was unble to find a way to either copy, or transfer files to my pc ...
Post doesn't work, i can't type in the name of the file to upload.
Value= doesn't work
Changing the value using javascript doesn't work also...

any ideas?
Ioannis KarAvas
Vampire
Posts: 138
Joined: Tue Apr 12, 2005 8:16 am

Post by Vampire »

Awhite wrote:any ideas?
proc://upload/...
pedroleite
Posts: 39
Joined: Sun Apr 10, 2005 8:31 am

Post by pedroleite »

Vampire wrote:
Awhite wrote:any ideas?
proc://upload/...
Another strings search, right?

I guess Sony will be losing some employees in the following days :)

Now it's a dilema for Sony... launch a new firmware to correct bugs, and provide more material for all the hackers out there... :)

Have you tested this proc:// url ?
bb00200
Posts: 1
Joined: Thu Apr 28, 2005 2:51 pm

Post by bb00200 »

Code: Select all

<input type="file">
The value attribute of this tag is read-only. It can only be set by direct user input of either typing into the box or using the browse button, and both of these have been stated to not work.
Awhite
Posts: 55
Joined: Wed Feb 23, 2005 3:21 am

Post by Awhite »

i've tried proc with a various of commands none of them worked though...
I almost tried everything inside the strings found...
Ioannis KarAvas
neckarb
Posts: 13
Joined: Tue Apr 05, 2005 4:02 am

HELP :(

Post by neckarb »

hey guys,
i got an html file from the html on here but i still cant get it to work how do u do it?, do u need it in usb mode? or what pleasse help thanks

Neckarb
Fluff
Posts: 35
Joined: Fri Apr 22, 2005 10:05 am

God i love these forums :)

Post by Fluff »

i'd been playing around with this for some time, i have the following on a website

<html>
<head>
<title>PSPLocal Launcher</title>
</head>
<body><br>
PSPLocal Launcher<br>
<br>
<a href="file://ms0:/index.html">Go!</a><br>
</body>
</html>

then on the root of the mem stick, i have my "web portal" content, it works pretty well :)
neckarb
Posts: 13
Joined: Tue Apr 05, 2005 4:02 am

Post by neckarb »

hi i really need help with this how do you get it to work???? PLEASE TELL MEEEEE!!!!!
reakt
Posts: 22
Joined: Fri May 06, 2005 8:35 pm
Location: Basingstoke, UK

Post by reakt »

neckarb wrote:hi i really need help with this how do you get it to work???? PLEASE TELL MEEEEE!!!!!
Don't panic! Search the forum first! Start here: http://forums.ps2dev.org/viewtopic.php?t=1223
It was actually on the same forum index page as this very thread!
Vampire
Posts: 138
Joined: Tue Apr 12, 2005 8:16 am

Post by Vampire »

added audio and video
Neila
Posts: 79
Joined: Sat Apr 23, 2005 3:36 am
Location: Canada

Post by Neila »

has anyone tired accessing:
file://host0:/www/index.html
what happens?
(no wireless here to test)
(1 + 1 == 10 ) == true
Awhite
Posts: 55
Joined: Wed Feb 23, 2005 3:21 am

Post by Awhite »

I think i once tried it, it must be the dev kit though, and propably used this to test the browser internally.
Ioannis KarAvas
LiquidIce
Posts: 55
Joined: Mon Apr 04, 2005 1:15 am
Contact:

Post by LiquidIce »

Neila, I get kicked back to the connection screen when i click that link:

<a href="file://host0:/www/index.html">host0</a>

Should I put an index.html somewhere?
Neila
Posts: 79
Joined: Sat Apr 23, 2005 3:36 am
Location: Canada

Post by Neila »

LiquidIce: don't know where :)
I was wondering what/where is the "host0"... maybe you are correct Awhite, and it's the dev-kit.
(1 + 1 == 10 ) == true
Neila
Posts: 79
Joined: Sat Apr 23, 2005 3:36 am
Location: Canada

Post by Neila »

has anyone attempted to access a movie file PMF?

does anyone have the Korean NETSPOT umd? it has VOD and should be able to run movies off the MemoryStick with its browser.
(1 + 1 == 10 ) == true
Phour20
Posts: 26
Joined: Fri May 06, 2005 1:38 am

Post by Phour20 »

This works on the Sampler disc also.. It pulls up the image that you would see if you went to the games screen (using the game pic sample from above) the Text how ever is shadow'd in the Pix. and Text itself must be overlayed
Post Reply