You Are Here:

Community: Developer Discussion Boards

#1 Old Multimedia clips supported? - 1970-01-01, 02:00

Join Date: Mar 2003
Posts: 2
oldpao
Offline
Registered User
Hi,

I have a few years experience with java programming, but new in developing for mobile devices. Recently I am assigned such a project and requirements are as below:
1. Using nokia handphone to download some multimedia clips from web or PC. By multimedia clips, I mean 2d/3d animations with voices played.
2. Using handphone to view the multimedia clips.

I have spent a few days surfing net to try to figure out whether it is technically feasible by current technology. But there is no trivial answer. Could you help to advise on whether current technologies can accomplish this goal? If it can, could you please tell me how to achieve the goal? Thanks a lot in advance.
Reply With Quote

#2 Old RE: Multimedia clips supported? - 1970-01-01, 02:00

Join Date: Mar 2003
Posts: 382
jalev's Avatar
jalev
Offline
Forum Nokia Expert
Hello

MIPD 1.0 supports only .png graphics.

Some video formata .nim , .3gp
is supported in Mobile Media API, JSR-135,
which is extension to Java MIDP 1.0.

Basics of MMA
Manager = Overall controller of the multimedia
Creates a Player
Player p = Manager.createPlayer(http://webserver/name.nim");

Player = Content handler interface

Control = Interface to control Player features

Optional content-specific controls:
ToneControl, VolumeControl, MIDIControl, etc.

Based on the spec, in should work like this:
VolumeControl vc;
try {
p = Manager.createPlayer("http://webserver/name.nim");
p.realize();


// Grab volume control for the player.
// Set Volume to max.
vc = (VolumeControl)p.getControl("VolumeControl");
if (vc != null)
vc.setVolume(100);

// To guarantee that the player can start with the smallest latency.
p.prefetch();

// Non-blocking start
p.start();
} catch (IOException e) {
} catch (MediaException e) {
}

MMA Features supported in 3650

Camera:snapshots in PNG, JPG, BMP
Video:Playing a video clip: 3GP, ( NIM ) not recording
Controls:VIDEO : VideoControl, VolumeControl, StopTimeControl


Sounds:
WAV, MIDI, SF-MIDI and SP-MIDI, AMR Creation of Tone Sequence
Controls:
Sampled audio : VolumeControl, StopTimeControl
Tone Sequence : ToneControl, VolumeControl, StopTimeControl
MIDI : VolumeControl, StopTimeControl

In future 3GP format will be better that .NIM

Mobile media API will be part of MIDP 2.0 or direct subset.

Some companies have develeper their own techics for animatios:

Animoi's product portfolio consist of tools for creating animated messages, server software for building animated messaging services and J2ME player components which power animated messages in J2ME-enabled mobile devices.

http://www.animoi.com/products_player.html

I hopr this helps you
Reply With Quote
Reply « Previous Thread | Next Thread »
Display Modes
Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules

You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Forum Jump

Rate This

 
Bookmark this page: DeliciousDiggFacebookGoogleYahooStumbleUponRedditDiigoTechnocratiTwitter  Share this page Share this page Print this Page Print this page Invite a friend Invite a friend
京ICP备05048969号    Email Newsletters Press Terms & Conditions Privacy Policy Sitemap Contact Us © 2009 Nokia