-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PSP Camera Support (Android) #8521
Comments
It's certainly possible to do, but it may be quite a bit of reverse-engineering work to figure it all out - I don't even know for certain that anyone has figured out the camera APIs apart from the function names. There does seem to be a piece of homebrew using the camera floating around, but the links I could find just return 404... |
@hrydgard |
@sum2012 ah, I didn't realize. Well, certainly doable then... |
Aw yeah ^_^ Go for it hrydgard cant wait to see some progress. |
and support UMD video |
@zminhquanz That would be nice jpcsp supports it aswell. you may want to post this as a request unless @hrydgard dont mind having two requests in one thread. I could rename this as video and camera support. while we're at it add Animated banner support lol take your time hrydgard we appreciate your work. |
@hrydgard, when ppsspp can access camera. So we can play invizimals or eyepet. I promise tu buy ppsspp gold if ppsspp can play invizimals or eyepet with camera mode. Thanx |
hopefully ppsspp in an upcoming version. there are features of the camera model |
ppsspp camera mode is very useful for the game pes |
please add ppsspp camera mode |
please |
Is there anyone working on this? |
Yes, #9927 added basic support but there's still more to do. |
I have not found the camera mode feature in android 6.0, ppsspp build a new one |
Hi.. When you will fix ppsspp camera for invizimals game. And add
microphone function too please. I like this game. And still waiting this
game can playing on ppsspp
…On Fri, Jan 19, 2018, 5:55 AM End4rko ***@***.*** wrote:
I have not found the camera mode feature in android 6.0, ppsspp build a
new one
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#8521 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ASW6hp5iRTCq_vxYarUgx2lm0KWkPPyLks5tL8vtgaJpZM4HOpO0>
.
|
Please fix camera support for ppsspp. So we can play invizimals game |
I would like to help with the issue but I have no clue on how to implement the sceUSBcam driver, i've seen others getting camera input in the emulator but I don't know how |
Hm, that only works in software rendering? It should be possible for us to notify the FramebufferManager that a camera image is there - that way we could easily get this to work with hardware rendering. Should be looked into. |
Yes, Invizimals mix camera image and game overlay/hud only while using software rendering. |
What address is the camera data being read into? Is it read directly to VRAM when the hud is mixed, or is it copied to VRAM later? -[Unknown] |
Camera data is transfered using sceUsbCamReadVideoFrame (which pass a pointer) and sceUsbCamReadVideoFrameEnd (get the data length written in the meantime at that pointer): https://github.com/hrydgard/ppsspp/blob/master/Core/HLE/sceUsbCam.cpp#L118 |
Right, and I forgot that those actually writes the image in JPEG format into the app's space. So we'll have to look into how the app does the JPEG decoding, maybe it decodes directly into a framebuffer then and we're not detecting it. |
I've tried last build, but i have the same issue than before. https://www.reddit.com/r/emulation/comments/cvu50m/just_some_info_for_the_lastest_ppsspp_build/ |
@Dgmtnz the text seems to be removed? |
I screwed up a little bit. A new build is on its way. |
Ok, last build gets the camera working perfectly, i'ts a little bit slow, but the game renders over it very nice, the only issue now is that you need a mic input in order to play the game https://www.reddit.com/r/emulation/comments/cvw0nh/invizimals_camera_now_working_fine_just_need_mic/ |
Yes thats right. Mic function can make playing invizimals be perfect
…On Tue, Aug 27, 2019, 6:33 AM Dgmtnz ***@***.***> wrote:
Ok, last build gets the camera working perfectly, i'ts a little bit slow,
but the game renders over it very nice, the only issue now is that you need
a mic input in order to play the game
https://www.reddit.com/r/emulation/comments/cvw0nh/invizimals_camera_now_working_fine_just_need_mic/
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#8521?email_source=notifications&email_token=AES3VBXG56R6AB2OY5NXHNTQGRR45A5CNFSM4BZ2SO2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5F7WDY#issuecomment-525073167>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AES3VBS2Y233H7JHELMGG7TQGRR45ANCNFSM4BZ2SO2A>
.
|
I tried to implement microphone support |
Wooww good job. 👍👍👍👍👍
…On Mon, Sep 9, 2019, 4:39 PM Florin9doi ***@***.***> wrote:
I tried to implement microphone support
https://github.com/Florin9doi/ppsspp/commits/android_audio_record
but I'm unable to find how to unblock the current thread so another thread
to be scheduled.
I think it may be related to this: __KernelWaitCurThread.
I'm posting this in case someone else is willing to continue.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#8521?email_source=notifications&email_token=AES3VBSB3OEHJTM6PUBTKQTQIYKUVA5CNFSM4BZ2SO2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6G4W6A#issuecomment-529386360>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AES3VBQTSE4EYIWUZ3EN32DQIYKUVANCNFSM4BZ2SO2A>
.
|
Good job 👍 |
PSP camera works! Microphone is a separate issue. Let's make one: #12336 |
This will be added to v1.9 milestone? |
Done, thanks for the reminder. |
Although actually, we still don't support webcams on desktop computers. But I'll open a separate issue for that, too. |
Hi @hrydgard , Sorry for this unrelated question, Kind regards, |
@Blane2609 Our USB API implementation is very basic and we don't expose the USB port of the host device to it. Maybe one day.. |
@hrydgard Thank you for the reply. I appreciate all the efforts and work you are doing with PPSSPP. |
So i tried to play invizimals with PPSSPP and it was going fine, but when i needed to use the camera it was very laggy, however it works fine with frontal camera, is this common? |
Would we be seeing the PSP Camera supported soon so we can play EyePet and Invisimals with our webcams and mobile cameras?
The text was updated successfully, but these errors were encountered: