• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Transfer Video from one J2ME to another

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all
I want transfer the captured video on my J2me enabled mobile phone to a Java server running Java servlet. please help me regarding this concept.
Do i have to convert the videos in to frames and then sent it.
Can i convert the videos in individual frames in J2ME.
Please help me.

Regards
Ullas
 
Ranch Hand
Posts: 160
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can upload the bytes to the server. You should know the content type of the captured video. Send the content type and bytes to the server. I would not attempt complex video or image processing unless you know that your target device can deliver good performance.

Sounds like you may be concerned about playback after the file is uploaded. When testing videos from mobile devices I user quicktime or realplayer. You should consider VLC also. MediaPlayer may not play 3gpp content.

If you try uploading and need more help, there is some example code I can send you.
reply
    Bookmark Topic Watch Topic
  • New Topic