J2ME supported mime types

Hi everyone!
I was just wondering what are the supported types (specifically mime types) that the current j2me wtk supports. Can anyone tell me what are these types?
Actually I am having a problem in playing a file in 3gp format (3pg file extension) on an emulator. It can't seem to create a player for "video/3gpp" type. Can anyone tell me how to get around this problem? It would be greatly appreciated.
Here is my code snippet....
try {
if ( player == null ) {
if (true/*url.startsWith("resource:")*/) {
//InputStream ins = getClass().getResourceAsStream(url.substring(9));
System.out.println("Creating player");
InputStream ins = getClass().getResourceAsStream("/video/test.3gp");
player = Manager.createPlayer(ins, "video/quicktime");
//player = Manager.createPlayer("file://video/test.3gp");
else {
player = Manager.createPlayer(url);
player.addPlayerListener(this);
System.out.println("Realizing...");
player.realize();
}catch(Exception e) {
e.printStackTrace();
System.out.println("Realize error!!!");
It compiles fine but when I run the code, it throws an error that it cannot create a player for video/3gpp...
Thanks!

IT seem that emulator does not support video/3gpp

Similar Messages

  • How to determine the MIME types of the files?

    I'm making an application, in which I've to upload the files to the database. Now I want to insert into the database the MIME type of the files. Now how can I know that which type of the file is having which MIME type?
    where can I get the list of all supported MIME types?
    Even if I get the list, then every time I update the file in the database, so every time I have to check the file extension and then insert the MIME type...
    this seems to be a tedioius job..
    Is there any simple way to do this?

    I could ask "supported by what?" but I assume you will
    be the one supporting them. Here's a link to the
    latest list of registered MIME types.HERE's the link...
    ftp://ftp.isi.edu/in-notes/iana/assignments/media-types/media-types

  • Vimeo video unable to connect. Error message says "video format or mime type is not supported.

    Hi I am using a template with a full screen video landing page but i am unable to get Vimeo to video to connect. Error message says "video format or mime type is not supported".
    I have uploaded successfully to Vimeo however when published to catalyst and previewed the error message "video format or mime type is not supported." is displayed.
    Is this a format issue? I should point out I am using a template from Museworld as I am not a designer or graphic artist just another noob.@

    Hi,
    This seems to be a Firefox error:
    Firefox error: video format or MME type not supported - Articulate Storyline Discussions - E-Learning Heroes
    Kindly check if you are able to view the video on Vimeo.
    Also, try using another browser.
    Hope it helps,
    Sonam

  • When I load pages with video contents like m3u8 I can't see the content from firefox because it says "video format or MIME type is not supporte"

    When I open a link like this:
    http://video.gazzetta.it/puntata-milan-kaka-fa-fuori-faraone/4494065a-13b0-11e3-a11e-38d7c867cc00
    I can't see the video content and I get this error message: video format or MIME type is not supported
    I have adobe flash updated
    I tried to reset firefox
    I have vlc installed
    I can correctly see this link with internet explorer. This is a PARADOX!
    Can somebody help me?

    I see that message when the Flash plugin is disabled.<br />
    If the Flash plugin is enabled or set to click-to-play then a Flash player plays the video.<br />
    Otherwise a video tag is created with a link to an m3u8 stream that Firefox apparently doesn't support.
    You can try to disable all other plugins that deal with media files (start with VLC) to see if that helps.

  • No video with supported formate and mime type found

    I am able to view videos on all but 1 website: http://www.start-american-sign-language.com/free-sign-language-asl1.html
    When I view that page, the video box only shows the x with "no video with supported formate and mime type found" being displayed.
    I have updated to the most recent palemoon (25.3.0) and have the following plugins installed
    DRM 9.0.0.4503
    Shockwave flash 16.0.0.305
    Silverlight 5.1.30514.0
    VLC Web Plugin 2.2.0.0
    Windows media Player Dynamic Link LIbrary 3.0.2.629
    I have cleared my cache and cookies, and am unable to view the video in question. If I go to https://www.youtube.com/html5, it indicates that I have an operable Webelement player and Web VP8, and all others are exclamation points.
    Does anyone know why I can't watch the (mp4) video(s) in question? I have turned up no viable solutions using the forums or google.
    Thanks!

    This happens when there is no support in your Windows XP version to play any of the media file formats that the website offers with the HTML5 media player (i.e. not a Flash player is used, but a video tag).
    That are MP4 files with type="video/mp4"
    *VLC shows: Codec: H264 - MPEG-4 AVC (part 10) (avc1)
    You might be out of luck on Windows XP and your only option would be to use an external media player and paste the links in its location field.

  • Trying to embed a video file in HTML5: ERROR=No video with supported format and MIME type found?

    Hello all!
    I am desparate for a solution. I am testing my site on Firefox and Explorer and still no sign of a functional video yet.
    Firefox: I get the error: No video with supported format and MIME type found.
    Explorer: I just get a distorted layout.
    Here is the code I am working on:
    <table id="Table_01" width="480" height="801" border="0" cellpadding="0" cellspacing="0">
        <tr>
            <td colspan="6">
                <img src="images/Video_01.jpg" width="480" height="114" alt=""></td>
        </tr>
        <tr>
            <td rowspan="3">
                <img src="images/Video_02.jpg" width="52" height="486" alt=""></td>
            <td colspan="4">
               <video controls width="376" height="221">
                 <source src="C:\Users\aalmeida\Videos\AEMC PEL 103 6 Channel, Power & Energy Logger - with Display (Part 1).mp4" type="Video/Mp4"/>
                 <source src="C:\Users\aalmeida\Videos\AEMC PEL 103 6 Channel, Power & Energy Logger - with Display (Part 1).webm" type="Video/WebM"/>
                 <source src="C:\Users\aalmeida\Videos\AEMC PEL 103 6 Channel, Power & Energy Logger - with Display (Part 1).oggtheora.ogv" type="Video/Ogg"/>
                 </video>
    Please tell me that there is something missing in the code. I have spent a lot of time uninstalling-updating Firefox plugins, added MIME types in the Internet Information Manager (I'm on Windows 7)
    and  seriuously hit a dead end with this!
    Any advice would be muchly appreciated!!!
    Thanks
    ~LA

    As Jon said, you must declare the page as HTML5.
    And your server may not be set up to deliver video as a binary file if it is an .OGG file. I have not seen this problem with .MP4 or .M4V in the past, but every server is a little different.
    To add a MIME type, you need to change your .htaccess file on an Apache server thusly:
    AddType audio/ogg .oga
    AddType video/ogg .ogv
    AddType application/ogg .ogg
    AddHandler application-ogg .ogg .ogv .oga
    Additionally, MIME types can usually be changed on a server's Control Panel. One can also ask one's hosting provider to do this as well.
    Firefox makes it necessary to use OGG files. Webkit-based browsers will deal with .M4V or .MP4 and I understand Internet Exploder will work with the latter two as well.

  • How to check if filetype or MIME type is supported on windows phone 8 or above ?

    Hi, 
    I want to write a simple functionality to know if filetype/MIME type is supported on device.
    This function will take filetype (e.g. pdf) and MIME type (e.g. application/pdf) as input parameter and returns true or false according to result.
    I searched for sample with this functionality but couldn't get one. If anyone have any idea or sample for this, that will be a great help.
    Thanks in advance !
    Regards,
    Anurag 
    Anurag_24

    Hi Anurag,
    >>I want to write a simple functionality to know if filetype/MIME type is supported on device.
    It seems like that there are some misunderstanding here, if a filetype can be opened by an app, it does not mean that the OS supports this type, it should be in application level.
    I think you expect that there are some places to store all supported filetype/mime type in OS, but I've not heard that the OS forced an application to register supported filetype/mims type.
    So your idea is good, but firstly, as far as I know, there is no such API to retrieve all available file types, secondly, even if there are some ways, they should not get all information you expected.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • No CGI or MIME types support in AS8???

    We're currently running AS7 and are looking at a possible move to AS8 due to some bugs in AS7 that Sun doesn't want to fix. However, this looks to be a difficult proposition, at best, as the AS8 release notes seem to indicate that CGI and the mime.types file features of AS7 are no longer supported.
    While all of our new development is in J2EE, we have legacy CGI apps that need to continue to be used. We also have uncommon content that in the past has required that we define entries in the AS7 mime.types file in order to get the client to handle the downloads properly.
    Has anyone gone through this migration that can explain what an appropriate solution to this issue is? The AS8 release notes and migration guide simply state that they are not supported, but give no suggestion as to how to replace them.
    Thanks,
    Bill

    Hi
    Right know we are also facing this problem i guess.
    How do you make 8.1 Standard Edition aware of mime for jnlp so that webstart can be used ??
    Jan

  • 50L4300 TV MIME Type Not Supported

    My Toshiba 50L4300 TV web browser is having problems with some web pages and shows such error MIME Type Not Supported. Can not open MIME type resource. It has Software 7.2.67.32.01.1 Jul 02 2014. MBOOT Version: 00467596.
    Any idea why do I have this error? please find enclosed pictures.
    Attachments:
    1.JPG ‏22 KB
    2.JPG ‏29 KB

    The TV doesn't have support for Flash content. Flash is a third-party plugin available for many web browsers. I'm sorry.
    - Peter

  • MIME Types support in JSP

    how do i implement MIME types in jsp page downloads? i could do it in php using stream and content type.. any help?

    Hi
    Right know we are also facing this problem i guess.
    How do you make 8.1 Standard Edition aware of mime for jnlp so that webstart can be used ??
    Jan

  • How to restrict uploading files by mime type?

    Hi,
    I have been searching the forum (and Google) looking for tips on how to ensure users can only upload files of specific formats (Word, PDF, etc) for specific document types as defined within the application (e.g. Curriculum Vitae (Word), Copy of Transcripts (PDF)).
    While I have used this research to start work on a server-side solution, I would like to know if there is an apex-friendly way to "validate" a file-browse item based on mime-type.
    Has anyone else had to address this?
    Ted

    Hi,
    I would like to know if there is an apex-friendly way to "validate" a file-browse item based on mime-typeHow about, you create a check constraint on your MIMETYPE column. something similar to this:
    alter table "MY_TABLE" add constraint
    "MY_TABLE_CON" check ( "MIMETYPE" = 'application/pdf' or "MIMETYPE" = ......)Or you can use this plugin, provided using browsers supporting HTML 5:
    http://www.theapexfreelancer.com/apex/f?p=APEXFREELANCER:FILE_UPLOAD:0
    For friendly,
    Please check error handling :
    http://www.inside-oracle-apex.com/apex-4-1-error-handling-improvements-part-1/
    Best Regards,
    Fateh

  • Trying to Access SharePoint 2013 Rest Api in HTML page but getting Mime Type Exception with Status Success

    I am trying to invoke the SharePoint Rest Api using HTML page. I have included the Access Control Allow Origin to the web.config file. I am getting Readty State 4 and
    Status Success but still I am getting the below error.
    Refused to execute script from 'http://<server>/_api//web/lists?callback=jQuery172045857910416089_1430217181282&_=1430217363882' because its MIME
    type ('application/atom+xml') is not executable, and strict MIME type checking is enabled.
        <script>
            $(document).ready(function () {
                $("#KMPDiscussions").click(function () {
                    //$.support.cors = true;
                    $.ajax({
                        url: "http://<server>/_api//web/lists",
                        dataType: "jsonp",
                        type: "GET",
                        method: "GET",
                        contentType: "application/javascript",
                        headers: {
                            "content-type":
    "application/json;odata=verbose",
                            "accept": "application/json;odata=verbose",
                        success: function onSuccess(data) {
                            alert("Inside Alert");
                        error: function onError(data){
                            alert("Error: "
    + data);
        </script>
    It always hits the error on callback.
    Is there any other way that I can invoke SharePoint Rest Api from a Cross Domain. Please Help.

    Hi Chris,
    Thanks for the reply,Here iam using different files to be uploaded in library.
    please find the below snapshot of json response and ULS logs.
    12/22/2013 18:31:15.02 w3wp.exe (0x3338) 0x401C SharePoint Foundation Files 
    abq2i High Could not get DocumentContent row: 0x80004005. 79f7629c-4694-c026-
    3349-2049178ee919
    12/22/2013 18:31:15.02 w3wp.exe (0x3338) 0x401C SharePoint Foundation Files 
    aiv4w Medium Spent 0 ms to bind -1 byte file stream 79f7629c-4694-c026-3349-
    2049178ee919 
    12/22/2013 18:31:15.02 w3wp.exe (0x3338) 0x401C SharePoint Foundation Files 
    aise3 Medium Failure when fetching document. 0x80070012 79f7629c-4694-c026-
    3349-2049178ee919
    12/22/2013 18:31:15.39 w3wp.exe (0x3338) 0x0D4C SharePoint Foundation 
    Database ab1a9 High Failed to get document content data.
    System.ComponentModel.Win32Exception (0x80004005): Cannot complete this function     at
    Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd, Object
    ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres) 
    79f7629c-76ab-c026-3349-2c9132b13e9a
    12/22/2013 18:31:15.39 w3wp.exe (0x3338) 0x4184 SharePoint Foundation 
    Database ab1a9 High Failed to get document content data.
    System.ComponentModel.Win32Exception (0x80004005): Cannot complete this function     at
    Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd, Object
    ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres) 
    79f7629c-76ab-c026-3349-281167b6cd09
    Thanks again,
    Naresh.

  • When I try to click on a download link for a .pdf file Firefox does not recognize the MIME type and tries to download the file as "index.php"

    When visiting a site I frequent I tried to download a linked .pdf file. Previously I've used Firefox 7.0.1 to download the link with no problem. Using Firefox 8 however I the browser does not recognize the .pdf link's mime type. Instead of recognizing the download link as a .pdf file Firefox 8 tries to download it as "index.php". Firefox 8 does this with .doc files and .txt files as well. When I downgrade to 7.0.1 again the problem disappears.

    Hi hakmacpace,
    I'd try starting Firefox in [[Safe Mode]]. If you don't have the issue while all of your add-ons, extensions, and themes are disabled, you can try adding them back in one by one until you find the culprit. You should look at the [https://support.mozilla.org/en-US/kb/Troubleshooting-extensions-themes Extensions and Themes troubleshooting guide ] and the [[Troubleshooting plugins]] article as well.
    You could also try [https://support.mozilla.org/en-US/kb/Managing-profiles?s=create+a+new+profile&r=2&e=es&as=s#w_creating-a-profile Creating a new profile].
    Hopefully this helps!

  • Weblogic +  jnlp MIME Type not recognised

    Can anyone help, I'm trying to get JWS to run on a machine that is running a Weblogic & Apache server for a large enterprise app. I've added the jnlp mime type to both the httpd.conf & weblogic.properties file. Depending upon where the jnlp file is situated, it either is returned as xml in the case of the Weblogic dir,hte mime type not being recognised or JWS starts and then throws a text.html error, if the the jnlp file is in the Apache htdocs dir. I've read that Weblogic introduced support for jnlp but my version doesn't include it in the config file. Is there a work around or won't JWS work with early versions of Weblogic?

    same problem for me also
    i have the lines in web.xml what you said
    but the mime type is not recognized
    help me
    --parthi                                                                                                                                                                                                                                                   

  • Mime Types and site validation?

    When validating site, I'm getting the the following warning
    Conflict between Mime Type and Document Type
    The document is being served with the text/html Mime Type
    which is not a
    registered media type for the XHTML 1.1 Document Type. The
    recommended
    media type for this document is: application/xhtml+xml
    I work with ASP and I can't figure out why, really, it's
    doing this nor
    can I figure out how to solve it.
    I use: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    and everything validates fine except for this last thing.

    .oO(Art)
    >When validating site, I'm getting the the following
    warning
    >-------------------------
    >Conflict between Mime Type and Document Type
    >
    >The document is being served with the text/html Mime Type
    which is not a
    >registered media type for the XHTML 1.1 Document Type.
    The recommended
    >media type for this document is: application/xhtml+xml
    >-------------------------
    >I work with ASP and I can't figure out why, really, it's
    doing this nor
    >can I figure out how to solve it.
    XHTML 1.1 documents should be delivered as
    application/xhtml+xml. This
    is not recommended, since IE doesn't support this MIME type.
    So switch
    back to XHTML 1.0 Strict, which can also be delivered as
    text/html.
    Micha

Maybe you are looking for

  • Multiple ipads on same pc

    My wife has an original ipad and I have an ipad2 on the way. If I sync my ipad to the same itunes as she syncs to will we both have the same info on each unit? Can we do separate backups? do I need to sync mine to a different pc? thanks

  • TS3899 Can't see my messages

    I have emails that I can see on my computer and Iphone but I can't see all of them in my ipad. Why is this? Is there a set up option on settings I need to change? My last email goes back to May of this year so it's not that old.

  • Old is gold . Min order /min Qty value in GOA

    Hi in olden GOA , we do have item field called min qty and min order . but removed in new GOA. it makes me more concern Why SAp removed them. I want that functionality in SRM 550. since my material master has more rounding value causing problem.. mut

  • XML Binding of a GregorianCalendar

    Im using XMLSpy, and trying to bind a Gregorian Calendar, does any one know of a good way to do this, so I can validate the XML that was created, using the Gregorian Calendar. Where the ????? is what do I put here. <xsd:element name="startDate" type=

  • Copying Mail folders from one Mac to another

    I'm consolidating my iMac and laptop, and keeping just the MacBookPro. Mostly, everything's gone smoothly: I networked the two with an ethernet cable, dragged the relevant iMac folders into the Public folder, and copied them onto the laptop. But now