We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I have a simple video player Processing sketch that plays some videos.
The issue is it won't run under Android due to the lack of video.processing library not being available.
How would I play a video in Processing in such a way that it would work on Android devices?
Thanks for any advice.
Phil
Answers
I'm pretty sure that APWidgets has a video player.
Thanks Calsign, I looked at APWidgets but couldn't get it playing a video yet.
Have you had success playing video?
I think the first issue I have is how to give it the path of the video, any idea?
Thanks.
Phil
I have not used APWidgets personally, but it has worked for others before.
Have you looked at the APVideoView Example (I'm pretty sure it comes with the distribution as well...)?
If it still doesn't work, please post the code that you are having difficulty with.
The video example is great but it takes the mp4 from from the SD card, my Android phone doesn't have an SD card and cannot figure out how to specify an mp4.
I can get a .wav file to play from my /data/ folder but if I put an mp4 in there my app just errors.
I think it could be a path issue but not sure.
Thanks.
Phil
package com.akenaton.travail;
of course that is using eclipse && android!!!
I guess you need to can change the video to individual frames and playback the frames... that's what I did!