forums.ps2dev.org Forum Index forums.ps2dev.org
Homebrew PS2, PSP & PS3 Development Discussions
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

UMD file system access
Goto page 1, 2  Next
 
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development
View previous topic :: View next topic  
Author Message
Vampire



Joined: 12 Apr 2005
Posts: 138

PostPosted: Fri May 06, 2005 8:13 pm    Post subject: UMD file system access Reply with quote

Code:
<html>
<head>
<title>UMD</title>
</head>
<body background="file://disc0:/PSP_GAME/PIC1.PNG">
<img src="file://disc0:/PSP_GAME/ICON0.PNG">
<img src="file://disc0:/PSP_GAME/PIC0.PNG">
</body>
</html>

or
Code:
<html>
<head>
<title>UMD</title>
</head>
<body background="file://disc0:/UMD_VIDEO/PIC1.PNG">
<img src="file://disc0:/UMD_VIDEO/ICON0.PNG">
<img src="file://disc0:/UMD_VIDEO/PIC0.PNG">
</body>
</html>

or
Code:
<html>
<head>
<title>UMD</title>
</head>
<body background="file://disc0:/UMD_AUDIO/PIC1.PNG">
<img src="file://disc0:/UMD_AUDIO/ICON0.PNG">
<img src="file://disc0:/UMD_AUDIO/PIC0.PNG">
</body>
</html>


Last edited by Vampire on Sat May 07, 2005 7:41 am; edited 2 times in total
Back to top
View user's profile Send private message
Awhite



Joined: 23 Feb 2005
Posts: 55

PostPosted: Fri May 06, 2005 8:28 pm    Post subject: Reply with quote

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
Back to top
View user's profile Send private message
reakt



Joined: 06 May 2005
Posts: 22
Location: Basingstoke, UK

PostPosted: Fri May 06, 2005 8:43 pm    Post subject: Reply with quote

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:
<html>
<head>
<title>Browse UMD</title>
</head>
<body>
<a href="file://disc0:/">Browse UMD!</a>
</body>
</html>


Perhaps disc0 can be replaced by disc1 or another device name for memory stick access too.
Back to top
View user's profile Send private message
Vampire



Joined: 12 Apr 2005
Posts: 138

PostPosted: Fri May 06, 2005 8:55 pm    Post subject: Reply with quote

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:
<html>
<head>
<title>Browse UMD</title>
</head>
<body>
<a href="file://disc0:/">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.
Back to top
View user's profile Send private message
Warren



Joined: 24 Jan 2004
Posts: 173
Location: San Diego, CA

PostPosted: Fri May 06, 2005 9:00 pm    Post subject: Reply with quote

Try msstore0: or msroot: I can't remember which it is and I don't have my network setup atm.
Back to top
View user's profile Send private message
Pit0711



Joined: 24 Mar 2005
Posts: 54
Location: Old Europe -Germany-

PostPosted: Fri May 06, 2005 9:03 pm    Post subject: Reply with quote

lol :-D
Back to top
View user's profile Send private message
Vampire



Joined: 12 Apr 2005
Posts: 138

PostPosted: Fri May 06, 2005 9:19 pm    Post subject: Reply with quote

Code:
<html>
<head>
<title>MS</title>
</head>
<body background="file://ms0:/PSP/SAVEDATA/UCUS98612P0000/PIC1.PNG">
<img src="file://ms0:/PSP/SAVEDATA/UCUS98612P0000/ICON0.PNG">
</body>
</html>

or
Code:
<html>
<head>
<title>MS</title>
</head>
<body background="file://fatms0:/PSP/SAVEDATA/UCUS98612P0000/PIC1.PNG">
<img src="file://fatms0:/PSP/SAVEDATA/UCUS98612P0000/ICON0.PNG">
</body>
</html>


Last edited by Vampire on Sat May 07, 2005 6:52 am; edited 1 time in total
Back to top
View user's profile Send private message
Awhite



Joined: 23 Feb 2005
Posts: 55

PostPosted: Fri May 06, 2005 9:53 pm    Post subject: Reply with quote

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

Although i like it this way:
Quote:

<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
Back to top
View user's profile Send private message
LiquidIce



Joined: 04 Apr 2005
Posts: 55

PostPosted: Fri May 06, 2005 10:13 pm    Post subject: Reply with quote

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!!
Back to top
View user's profile Send private message Visit poster's website
Awhite



Joined: 23 Feb 2005
Posts: 55

PostPosted: Fri May 06, 2005 10:31 pm    Post subject: Reply with quote

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
Back to top
View user's profile Send private message
pedroleite



Joined: 10 Apr 2005
Posts: 39

PostPosted: Fri May 06, 2005 10:47 pm    Post subject: Reply with quote

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?
Back to top
View user's profile Send private message
Falkon



Joined: 28 Apr 2005
Posts: 5

PostPosted: Sat May 07, 2005 12:02 am    Post subject: Reply with quote

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..
Back to top
View user's profile Send private message
etx



Joined: 02 Apr 2005
Posts: 33
Location: Detroit

PostPosted: Sat May 07, 2005 1:17 am    Post subject: Reply with quote

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. ;)
Back to top
View user's profile Send private message AIM Address
pyro42



Joined: 06 May 2005
Posts: 11

PostPosted: Sat May 07, 2005 1:27 am    Post subject: Reply with quote

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
Back to top
View user's profile Send private message
Awhite



Joined: 23 Feb 2005
Posts: 55

PostPosted: Sat May 07, 2005 1:42 am    Post subject: Reply with quote

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
Back to top
View user's profile Send private message
Vampire



Joined: 12 Apr 2005
Posts: 138

PostPosted: Sat May 07, 2005 1:59 am    Post subject: Reply with quote

Awhite wrote:
any ideas?

proc://upload/...
Back to top
View user's profile Send private message
pedroleite



Joined: 10 Apr 2005
Posts: 39

PostPosted: Sat May 07, 2005 2:12 am    Post subject: Reply with quote

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 ?
Back to top
View user's profile Send private message
bb00200



Joined: 28 Apr 2005
Posts: 1

PostPosted: Sat May 07, 2005 2:25 am    Post subject: Reply with quote

Code:
<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.
Back to top
View user's profile Send private message
Awhite



Joined: 23 Feb 2005
Posts: 55

PostPosted: Sat May 07, 2005 3:03 am    Post subject: Reply with quote

i've tried proc with a various of commands none of them worked though...
I almost tried everything inside the strings found...
_________________
Ioannis KarAvas
Back to top
View user's profile Send private message
neckarb



Joined: 05 Apr 2005
Posts: 13

PostPosted: Sat May 07, 2005 4:17 am    Post subject: HELP :( Reply with quote

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
Back to top
View user's profile Send private message
Fluff



Joined: 22 Apr 2005
Posts: 35

PostPosted: Sat May 07, 2005 5:06 am    Post subject: God i love these forums :) Reply with quote

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 :)
Back to top
View user's profile Send private message
neckarb



Joined: 05 Apr 2005
Posts: 13

PostPosted: Sat May 07, 2005 5:17 am    Post subject: Reply with quote

hi i really need help with this how do you get it to work???? PLEASE TELL MEEEEE!!!!!
Back to top
View user's profile Send private message
reakt



Joined: 06 May 2005
Posts: 22
Location: Basingstoke, UK

PostPosted: Sat May 07, 2005 5:55 am    Post subject: Reply with quote

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!
Back to top
View user's profile Send private message
Vampire



Joined: 12 Apr 2005
Posts: 138

PostPosted: Sat May 07, 2005 7:46 am    Post subject: Reply with quote

added audio and video
Back to top
View user's profile Send private message
Neila



Joined: 23 Apr 2005
Posts: 79
Location: Canada

PostPosted: Sat May 07, 2005 4:44 pm    Post subject: Reply with quote

has anyone tired accessing:
file://host0:/www/index.html
what happens?
(no wireless here to test)
_________________
(1 + 1 == 10 ) == true
Back to top
View user's profile Send private message
Awhite



Joined: 23 Feb 2005
Posts: 55

PostPosted: Sat May 07, 2005 8:44 pm    Post subject: Reply with quote

I think i once tried it, it must be the dev kit though, and propably used this to test the browser internally.
_________________
Ioannis KarAvas
Back to top
View user's profile Send private message
LiquidIce



Joined: 04 Apr 2005
Posts: 55

PostPosted: Sat May 07, 2005 10:08 pm    Post subject: Reply with quote

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?
Back to top
View user's profile Send private message Visit poster's website
Neila



Joined: 23 Apr 2005
Posts: 79
Location: Canada

PostPosted: Sun May 08, 2005 3:27 am    Post subject: Reply with quote

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
Back to top
View user's profile Send private message
Neila



Joined: 23 Apr 2005
Posts: 79
Location: Canada

PostPosted: Sun May 08, 2005 8:09 am    Post subject: Reply with quote

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
Back to top
View user's profile Send private message
Phour20



Joined: 06 May 2005
Posts: 26

PostPosted: Sun May 08, 2005 4:54 pm    Post subject: Reply with quote

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
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development All times are GMT + 10 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group