Format of Real Player

Hi, what is the format of the real player on N73 to see MP4 videos? And how can i convert avi, dvd,.. to the N73 standart reader on the phone?
Thanks

Ok, here we go again:
THE LIST:
- ImToo 3GP encoder
- PSPVideo 9 (Use QVGA profile)
- AnyVideoConverter, there's a free version and a pro version you can work with the free version
- Super (as korngear said)
- Quicktime Pro
- RealProducer Plus (from real)
- Nero Platnium
- Roxio converter
- Xilisoft
Nokia tools:
- Nokia Multimedia player (Choose Save As...) and select the type of video (this is installed with PC Suite so you may already have this)
- Nokia Video Manager (very simple to use)
- Nokia Multimedia Converter (you need to register to forum Nokia to use)
There are many, many more converters, but these should get you started.Message Edited by el_loco on 24-Sep-200705:34 PM
640K Should be enough for everybody
El_Loco Nokia Video Blog

Similar Messages

  • Real player format?

    i know i have asked alot of questions tonight but i do really need to know
    i have downloaded a couple of things that should be compatatable to real player. There RMVB format. The thing is it won't play although sound comes out. got any suggestions???

    28-Jan-2008 10:27 PM
    forza_juve wrote:
    that doesn't help what im suggesting is why is sound only playing out and no video. Its real player format though but its says unable to play video sound only (somthing along those lines)
    It answers the question fully if you know the difference between a container format and a codec. Read this: http://howto-pages.org/ffmpeg/#basics
    ".RM" files only indicate the fact that they're multiplexed using a RealMedia container format. The important thing is what exactly is multiplexed. The phone, once it has demultiplexed the stream and extracted the encoded audio and video components, does it know how to cope with them? It does know how to deal with the audio because you can hear it. However, it does not know how to decode the video component. Why? because it only knows how to decode RealVideo 8, 9 and 10, not whatever codec was used to encode the video component in your .rm file.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Does anyone know a video converter to convert Internet video recordings. Its in an IVR file, I can get it to work on real player on a widows but cant get it to work on my mac.

    Does anyone know a video converter for a video file for internet video recordings. IVR file. I can get it to work on real player on my windows but can not open it on my mac.

    Try downloading and using VLC. It is a very popular media player that plays just about every file format out there. That way you would not need to convert it.
    http://www.videolan.org/vlc/download-macosx.html

  • Mac Intel and Real Player - some info

    I've been grappling with the problem of getting Real Player to run on an iMac Intel for some weeks. I have now solved my problem so post my experience here in case it is helpful to anyone else.
    Only a few weeks ago Realplayer was not written to run on the Intel iMac. This was not obvious from the Real site (a sign that marketing people are in charge over there, all negative information is banned in case it creates a bad impression, never mind the cusotmers going mad trying to find out some basic and essential information).
    Well Real Player does now run on the iMac Intel. Again the Real website is useless for any serious information about the why's, when's and wherefore's of this, but it can now work, so I'll be happy with that.
    However when you install the Realplayer (I installed the free version, don't have experience with the paid for version, experience so far doesn't incline me to pay for it) it may not work straightaway. One apparent problem is that behind the scenes it seems to set your Audio output to a higher bit rate than is appropriate. This creats the apparent behaviour that Real player runs, and successfully streams, but no sound emanates.
    Here are the things I did at the end of which it worked.
    1. Find the Real Player application under Finder, click on it and select "Get info" (from Finder menu) and tick box to run under Rosetta. I am not sure if this is now necessary but I did it and it works, so I'm not undoing it.
    2. Open, then close GarageBand. This was recommended by other posters.
    3. This is what took me ages to get right.
    Go to Applications/Utilities
    Open Audio MIDI Setup
    It should open in the Audio Devices tab, if not, click on Audio Devices tab (top middle, left tab)
    In selection box marked "Properties For", select "Built In Audio"
    At this point the right hand pane should open with details of the built-in speakers for the iMac Intel. Note that if the right hand pane is empty or has a message about Output not being supported, this is because you need to select "Built In Audio" under the "Properties For" box.
    Makes sure that under the Format selection box you select "44100"
    Close Audio MIDI Setup and then run Real Player.
    Hope it helps someone.
    Or maybe I was the only one left struggling with this!
    Martin
    Singapore
    Mac OS X Intel Mac OS X (10.4)

    Flash Player 10.3.183.90
    Mac OS X 10.5
    •Flash Player 10.3.183.90 (Mac only) (24.4 MB)
    This may be the correct one, since it does not say Mac OS X 10.4+ PPC
    While I have an Intel-Mac running OS X 10.5.8, and last version supported
    Flash from Adobe archive, I don't recollect which one. I did save the .zip.
    Also have three PPC Macs running OS X 10.5.8 with a patched adobe flash
    using the 11.x method of extracting part of a newer Flash (still vintage) to
    trick sites into seeing it as a later than Flash 10.1.
    •Adobe Flash Player - Help:
    http://helpx.adobe.com/flash-player.html
    Hopefully this helps.
    Good luck & happy computing!

  • Problem with playing audio data using Real Player

    i've seen the intruction for playing video data (.rm) using real player and it works. Then i tried to play audio data (.wav, .dat, .mp3) with real player, but it didn't work.
    These are some codes i've wrote:
    ------------------------------------------- BEGIN PL/SQL CODES---------------------------------------
    CREATE TABLE SONGS
    ( Item_ID number not null PRIMARY KEY,     
    Audio ordsys.ordaudio
    create or replace procedure load_audio(id integer, filename in varchar2) as
    obj ORDSYS.ORDAudio;
    ctx RAW(4000) := NULL;
    begin
    INSERT INTO SONGS VALUES(ID,
         ORDSYS.ORDAudio.init());
    SELECT audio into obj from Songs
    where item_id = id FOR UPDATE;
    obj.setSource('FILE','AUDIODIR', filename);     
    Obj.setDescription('A movie trailer');
    Obj.setMimeType('audio/x-pn-realaudio');
    Obj.setFormat('Real Media File Format');
    obj.import(ctx);
    UPDATE Songs
         SET audio=obj WHERE item_id=id;
    COMMIT;
    END;
    show errors;
    truncate table songs;
    exec load_audio(1,'aud1.wav');
    exec load_audio(2,'aud2.mp3');
    exec load_audio(3,'testaud.dat');
    -- just for comparison, i put a video file (.rm)
    exec load_audio(4,'autorace.rm');
    commit;
    show errors;
    create or replace procedure get_audio(
         audio_id in varchar2,
         mimetype out varchar2,
         data out blob) as
         tempBLOB BLOB;
         s varchar2(200);
    begin
    -- Deliver audio and mimetype
    select t.audio.getcontent(), t.audio.getmimetype()
    into tempBLOB, s
    from songs t where t.item_id = audio_id;
    data := tempBLOB;
    mimetype := s;
    end;
    show errors;
    ---------------------------------------- END of PL/SQL CODES-------------------------------------
    -----------------------------------MOUNTPOINT at FILESYSTEM rmsever.cfg-------------------
    <List Name="pn-oracle-audio">
    <Var Database="oracle"/>
    <Var HeaderCacheSize="2048"/>
    <Var LobFetchSize="32768"/>
    <Var MaxCachedConnections="1"/>
    <Var MountPoint="/dbaudio/"/>
    <Var Password="ZGF2aWQ="/>
    <Var ShortName="pn-oracle"/>
    <Var SQL="get_audio"/>
    <Var Username="skripsi"/>
    </List>
    ----------------------------------------End Of MOUNTPOINT----------------------------------
    then in the real player, i tried some urls :
    http://david:88/ramgen/dbaudio/1 --> it didn't work, it was said invalid path
    http://david:88/ramgen/dbaudio/2 ----> it didn't work, it was said invalid path
    http://david:88/ramgen/dbaudio/3 ----> it didn't work, it was said invalid path
    http://david:88/ramgen/dbaudio/4 ----> it worked
    did i put a wrong url?
    does the http://..../ramgen/... path is just for ram file?
    can anyone show me the way to play audio data using real player?
    Thanx before.

    Yes, realserver expects an exact mimetype.
    to make matters worse, it expects audio/x-pn-realaudio (an audio mimetype) for video!?!?!
    Seems the code inside maps multiple file extensions to some mime type. Only one is allowed.
    I have used the unix strings commands in teh plugins directory to find the exact mime type realserver is expecting. The file format plugins have this information in them.
    Larry

  • N73 Real Player very quiet

    Sorry if this has been brought up before.
    I recently bought an N73. One of the reasons I got it was to watch bits of video on my long journey to and from work. When I play a 3gp file via Real Player, the sound is barely audible through the headphones. If there's any kind of outside sound, I can't hear a thing. Oddly, the sound seems OK through the phone's built-in speakers. Also any other sound is OK through the headphones.
    The problem seems to lie either with the firmware (V 2.0628.0.0.1), or with Real Player (V s60.30.19.02 D 18 May 2006). I think I'm up to date.
    Does anyone know of a fix for this, or have I just bought a turkey?
    Thanks for any help.

    You should have a network locked version... Do backup of phone content, and after that, do a phone reset *#7780#, before a phone format, and see it it works better.

  • Cannot Play .DAT Movie Files in Real Player/Java Media Player

    Hi,
    I wanted to play some movie files in Solaris 10 (Was curious if the movie might be rendered more crisply in Solaris than Windows :) ) but found that .DAT files are not played in Java Media Player.
    So I downloaded the Real Player for Solaris 10 x86 (The bin file which is a self executable installer). Now Real Player plays mp3 songs without a problem, just like Java Media Player, but it does not play any movies with a .DAT extension.
    I thought may be I need to download a small patch and hence googled a bit, but could not find anything. So googled again to find if there was some work around, but could not come up with anything.
    Has someone faced a similar problem? If anyone could help me with this, I would be really thankful.
    P.S: I have boasted to my friends how good Solaris 10 is and if I get the .DAT movies working in Solaris 10, they will surely think of getting it installed on their comps cause it pretty much does everything else !!

    That application is in the Applications -> Utilities Folder.
    Change the popup menu under "Properties for" to Apple logo Built-in Output. And change the Source to Internal Speakers, and format to 44100.0 Hz with the downward pointing triangle next to the Hz rating.

  • Real Player & Windows Media Player don't play a sound

    Hi,
    all of a sudden I cannot play Real or WMA streams anymore. I have the official Real player as well as the Microsoft player installed to use this nice widget for radio streams (http://radiotuner.wuersch.net/). It has worked all the time quite well but suddenly it does not give a sound.
    When I open a stream directly in one of the programs they start to cache the stream but don't start to play (and yes, the streams exist and work on other PCs ). I have already tried to uninstall and reinstall the players etc. but I could not bring it back to life.
    Does somebody has a hint for me what could maybe has been messed up?
    Many Thanks for every idea,
    Thomas
    Macbook Pro   Mac OS X (10.4.8)  

    That application is in the Applications -> Utilities Folder.
    Change the popup menu under "Properties for" to Apple logo Built-in Output. And change the Source to Internal Speakers, and format to 44100.0 Hz with the downward pointing triangle next to the Hz rating.

  • Real Player not executing the 3gp & MP4 Files

    Hi,
    When i run the 3gp and MP4 format files in real player it shows the following error
    "Unable to play either sound or video can be paly" and it automatically start the sound of the clip and not show the video.
    Also when i record any video by camera it also shows the same error while running the same file by Real Player
    Firmware Version is : 12.0.026.
    Please help me to resolve the problem.
    Amit

    I also got the same error on my Nokia N79 and hence took it to the care centre but the care centre told me that the file size must have been too large cause it can play files upto 100mb .
    Hope this helps 
    This post is Posted By SHONOX

  • Real Player and Realdownloader are not downloading videos.

    These apps were working until 7/2/13. The popup does not appear on the top right of the video. They do work with IE. Now I've deleted them with Control Panel and reinstalled, but no luck. I'm running an XP box.

    Solved the whole Real Player-Firefox issues. Simply go your control panel, select "Programs", under "Default Programs" click on "Change default settings for media or devices". Find Video Files and choose Real Player logo to Import Music, Video and Pictures using Real Player. Click "Save" at the bottom of the window, then closeout and restart Firefox. You should see the "Download this Video" icon in YouTube videos once again and download at will. One caveat, it seems to work great on amateur videos and the like. I had an issue downloading some music videos. It's kind of hit or miss, you will have to keep trying to download a video if it doesn't work initially. I noticed that it downloads videos as a .dash file and then Real Player downloader will convert the file to mp4 or whatever format you have it set to in your preferences. These directions are for Windows 7, you will have to find the equivalent control panel options for other Windows OS. Good luck!

  • Real player

    Hi,
    I have downloaded some songs from the net which are in real player file format. My xpress music(5610) mobile does not recognise/convert them. How to convert these files to the ones accepted and played by the mobile? Also, can we install the real player in the mobile?
    Regards,
    rskallaje

    Realplayer is in the mobile but You need to open the Video Player to play Realaudio files.
    If you don't want to use this, then you can convert the files using SUPER www.erightsoft.com or some other audio encoder.
    640K Should be enough for everybody
    El_Loco Nokia Video Blog

  • Real Player API

    Hi,
    is it possible to call the Real Player API within a Java application? I want to stream from a url like rtsp://myserver/mystream.3gp. I know that it's possible to embed Real Player in a website. But I haven't found much information about using Real Player in a java application
    If it's possible, which jar-File do I need? Has anybody some sample source code.
    I have to write a program, which checks if streaming works or not.
    Thx Stephan

    I just started using JMF 2 days ago ... yesterday Iwelcome to the club
    I just discovered that many
    formats such as flash >v2, MPEG4, some AVI formats etc
    etc are unsupported by JMF.yes, i think the guys at working hard to support more and more.
    Is it possible to use native installed codecs ? Haveit is possible, but depends on your programming skills.
    it is even possible to use the windows codecs on other operating systems,
    but this requiere hard programming skills and is not recommened for beginner
    oder average skilled people.
    have a look at the Custom Codec example on the jmf/sample/solutions page.
    some of these codecs been written in java and are
    avaliable for use somewhere ? Is it possible to havethere are some codecs out in the network. just try google.
    JMF interact with say the Windows Media Player API,
    Real Player API, Quick Time API to play media files
    given that I would lose platform independance ? sure, but why using java when you want to use plattform fixed
    api's ? it is even easyer to use visual basic.
    if you want to use the api of the media player, i recommed
    J++ from ms. J++ simply opens you the world of com objects,
    but why using java then ?
    One other thing I noticed when I played media files
    that were supported I had some performance issues ...
    are the is JMF using a software or hardware
    implemenation to render the videos ?that depends on your JMF package. JMF is available
    for windows, solaris and linux in special, which has native librarys on
    board to speed up performance and bring some more codec and even the possibility
    to capture video with it. but i prefer the cross plattform version and the most other
    people even so. the less is, you cant capture video.
    thanks in advanceyou welcome
    - michael

  • Real Player 6760 slide

    Hi all
    I am having trouble with real player not supporting some files, and then supporting them again, obviously, not able to play back the files. Is there a way to get this fixed or get an update on the software, or another vidoe player?

    Its not a bug, its limitations of the device hardware. Playing avi stream mp4's require a better processor and better graphics acceleration than what is available on the 5800. Using DivX s60 version on 5800 gives rather choppy playback on avi stream mp4 formats because of system and unit limitations.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • Using iPod Classic with Real Player

    I recently received an 80GB iPod Classic. This is my first portable media player. I have purchased music from the Real Store using RealPlayer. This music is rights protected, and I do have the proper rights to use the downloads. In Real Player, these music downloads come with a .rax suffix, instead of .mp3. Can anyone tell me how to set up my system to play my Real Store purchases on my new iPod? Everything I've read leads me to believe it can be done, but I've tried the recommendations on the Real Support site, to no avail. I would really appreciate any insight.

    Onesimo Solis wrote:
    Can anyone tell me how to set up my system to play my Real Store purchases on my new iPod? Everything I've read leads me to believe it can be done.
    Really? My general impression is that all copy protection is proprietry and, as far as the end user is concerned, is just a bad thing. iTunes can't read WMA protected content, Window Media Player can't read iTunes protected content. RealMedia just extentds the compatability headache. Media Players will generally cope with only one form of protected content.
    I don't have any practial experience with the Real protected format, but the usual workaround for this is to burn your protected content out to CD, assuming you have the necessary rights, then import in an unprotected format. There will be a small loss of quality due to the re-encoding but this should be minimal. There are also programs that can speed up this process for some formats by virtualising the CD and automating the intermediate stages.
    tt2

  • Is possible to convert a Real Player Movie to Quiketime or better yet, DVD?

    I have a great shot of my wedding that I would like to cut and paste into my DVD project but it is in Real Player format. Is it possible to convert it into a format that I can use with iDVD?

    I got hitched in Vegas at the Viva Las Vegas Wedding Chaple and they recorded a dvd and they brodcasted it on line live using Real Player... Long story short I have 2 views of my wedding (1 on DVD and another from another angle in Real Player) and I'd like to combine them (edit them) into one. So if anyone has any other ideas that I should look into please let me know.
    Thanks.

Maybe you are looking for

  • HT4061 I need to know how do I get my "My Gen" info from my phone to my PC?     Also, how do I add a printer to my i-Phone?

    I am a 78-year-old Senior Citizen.  I am a native "OKIE" and very proud of my state and "My Sooners" showed the world how to 'hang-together' to win a very exciting, over-time, game.    First 'Bedlem" Overtime Game in a hundred years of the series.   

  • Ipad suddenly not recognizing my location?

    I am totally stumped till day before morning my ipad was displaying my location correctly in all the map application( nokia, apple, google, accuweather,and even the compass) and then suddenly  it is 'cannot determine location, for the last two days.

  • Database crawler won't doc open problem

    I am using the database record viewer and have crawled in some databases but when I try to apply a stylesheet to them and you click on the file it does not open in the browser it wants to save the file. If you do save it then open it the file display

  • Windows Oracle x86_64 bit Installation Error

    Hi, I am installing a new system on Windows Server 2003 Enterprise R2 x64 Edition and Oracle 10.2 as the database. The product is R/3 Enterprise 4.7 X 1.10 SR1. According to the note 899111, I have taken the Installation master for R/3 4.7 X 2.00 SR1

  • Requirement of GLIBCXX_3.4.9 with higher GLIBCXX intalled

    Using CentOS desktop 5.5 I have GLIBCXX_4.1 installed, along with an older 3.4.6. Running FF beta 4.b8 everything was pretty cool, no issues that I noticed. One morning I was prompted to upgrade to newest 4.b9, so I let it download the upgrade and le