Hi ,
Some one help me to download drm clips using j2me and how we can able to convert it into dcf files. Actually i hit a test.dm link it downloaded as test.dcf through browser.How can i implement same thing on client?
Hi ,
Some one help me to download drm clips using j2me and how we can able to convert it into dcf files. Actually i hit a test.dm link it downloaded as test.dcf through browser.How can i implement same thing on client?
Try Platform request with the URL from your Midlet and it will download and stored on the device.
You can try to play a DRM OMA1 protected file with MMAPI. As an example, a player using DRM-protected audio content could be created in the following way:
Player player = Manager.createPlayer("file:///C:/Data/Sounds/Digital/Song.dcf");
Next, try to prefetch the player:
player.prefetch();
Thou this is know issue that above fails on some Nokia deviecs please refer to FN Wiki artcile:
http://wiki.forum.nokia.com/index.ph...prefetch_error
thanks,
~Amitabh
Follow me on my blog for Innovative Mobile Apps
HI Amitabh,
Thanx for replay.Cant we download drm clips using code with out using platform request.My requirement is to download the drm file to a specific location and can be play any number of times once he downloads it.
We downloading 3gp clips into that specified location and playing this is working fine using code. problem with drm is it should convert into dcf format while downloading.So how can i handle this with code.