• 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

Problem in setMediaTime

 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

Please tell me what actually setMediaTime(long l) do .what are the media types that do not support the setting of media time.
What i know about setMediaTime() is that it�s returned value will indicate the actual media time set. Please explain in depth.


Thanks
Madan
 
Ranch Hand
Posts: 231
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The MMAPI javadocs explains it as well as it can be:

http://www.j2medev.com/api/mmapi/javax/microedition/media/Player.html
or simply browse the WTK docs directory.

setMediaTime() is used for example in audio/video playback
to set the starting playing time, before a player is realized.

StopTimeControl is also related to media time,
it allows you to set the media's stop time.
http://www.j2medev.com/api/mmapi/javax/microedition/media/control/StopTimeControl.html
[ June 25, 2006: Message edited by: Eduardo Marques ]
reply
    Bookmark Topic Watch Topic
  • New Topic