How to open .divx files and AC3 codecs?

Hi,
I am new at Macbook. I just got it one week ago, and i dunno how to use it, but I love my mac...
My question is how can I play .divx files, and some of the movies I have coded with ac3, so how can I play them?
thanks,

Hi ecetin and welcome to the forums!
Congratulations on the new macbook - I hope you will both be very happy!
Here is the 'full nine yards' on what you need:
These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
It is known to work in the great majority of cases with Safari 3.0.4, 3.1, 3.1.1, QT 7.3, 7.4.x and 7.5 and OS 10.4.11.
Assuming you already run Tiger versions OS 10.4.11 and have Quicktime 7.4 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
RealPlayer 11 (which is no longer in beta) for Mac from:
http://www.versiontracker.com/dyn/moreinfo/macosx/15540
Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
Perian from http://perian.org/
You should read this support page http://perian.org/#support in case you need to delete older codecs.
Adobe FlashPlayer should first be uninstalled using the appropriate uninstaller available here:
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157&sliceId=2
and then the latest version obtained from here:
http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
and installed.
(You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS, but please see my footnote if you are running Leopard.)
In earlier versions than QT 7.1.3 in Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
You should also ensure, if you are running Tiger 10.4.11, that you have downloaded and installed all the correct version for your Mac of Security Updates up to and including 2008-004. (N.B. Security Updates require both a restart and a permission repair.)
In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/
Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them) to enable Java.
Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz, and that you have selected 'Built in Audio'.
Important: Now repair permissions and restart.
You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.
There is an additional 'fix' you could try if you are having problems with Flash and Quicktime, depending on which type of Mac you have:
On Intel Macs, make sure that you are not running Safari in Rosetta. You can check this, and change it, in the Get Info window.
On PPC Macs, go to the Hard Disk/Library/Internet Plug-Ins folder, and drag the file 'QuickTime Plugin.webplugin' to the desktop. Quit and restart Safari. If things have improved you can trash that file. If they haven't put it back, as the lack of this plug-in can cause QT content in some widgets to cease functioning.
And now there is an additional kid on the block: SilverLight. Microsoft has created their own version of what a replacement for Flash should be. You can read more about it here:
http://silverlight.net/
So, if you go to any sites that have been designed for this new Silverlight stuff, you can download the plug-in from here (but make certain that you are downloading SilverLight v.1.0 for OS X (10.4.8 upwards):
http://silverlight.net/GetStarted/
FOOTNOTE
If you are running Leopard:
Some users have mentioned that the latest Flash Player (v.9.0.115.0) conflicts with Leopard, and that they have needed to revert to v. 9.0.47. This can be downloaded from here:
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266&sliceId=1

Similar Messages

  • How to open .rar files and .exe files on mac

    HI
    I'm new user on mac and would like to know how to open .rar files and .exe files on MAC OS X
    Thanks

    How is this a Compressor question?
    .exe is a Windows only Executable, and can't be opened on a Mac, unless you have Windows installed.
    Michael Trauffer

  • How to open a file and display the complete file path?

    In my script, I want to create a dialog that prompts the user to define a few variables for the script. One of those variables is the path to a template file. I want it to work the same way that an upload form works. You click the browse button, the dialog appears so that you can browse for the file and then when you click OK or Open, the full path of the file is displayed in the text box next to it. How do I do this with JavaScript? I got this far and it seems to be working, but the wrong text is being displayed in the text box. Plus: How do I properly restrict the file types to PSD. The code doesn't seem to work, despite the fact that there are no errors reported. Initially the Text box is blank, but After I browse for the file, the text box says: "File". Here is the problem area:
    defineVars.STPnl.STBrowse.onClick = function browseST() {
    var stbFile = File.openDialog("Select the Single Mugshot Key Template File", "File Types: *.psd, *.PSD");
    defineVars.STPnl.STPath.text = stbFile;
    Thank you to whoever assists me! :)

    Change this:
    defineVars.STPnl.STPath.text = stbFile;
    To this:
    defineVars.STPnl.STPath.text = stbFile.fullName;
    The reason is that stbFile is a File object, you need to access its properties in order to get the full path.

  • How to open indesign files and close

    i want to open indesgin files exist in the folder and i want to open all the files one by one and i want to close wht are the files i opened
    could anyone tell me.

    The following script does exactly that.
    var fileLocation = Folder.selectDialog("Select a folder");
    folder = new Folder ([fileLocation]);
    folderContents = folder.getFiles("*.indd");
    var openedFiles = new Array;
    var filenames = new Array;
    for (i=0; i<folderContents.length; i++)
    filenames.push (folderContents[i]+"\n");
    openedFiles.push(app.open (folderContents[i]));
    str = filenames.join();
    if (confirm ("Close "+str) == true)
    for (i=0; i<openedFiles.length; i++)
      openedFiles[i].close();
    As you can see, you are responsible yourself  for keeping a list of the files you opened. But with that list, you can do some interesting stuff -- such as closing the same files again.

  • System exec, How I say to open one file and make operation in external program?

    Hi,
    I got called an external program with the system exec.vi, but i would like the program open the file saved in the other window, i can get the file path, but how Can I put the file path in the external program and the program open the file and I tell (in this case compile), since i open one file code c and only i must to open and say to the program 'compile' and then close external program.
    Any help?. Thanks.
    Attachments:
    system_exec.GIF ‏8 KB

    Hi Fonsi,
    System Exec.vi will allow you to run commands like launching a program easily but it is difficult and many times not possible to execute commands within an application.
    A better way maybe to approach this though ActiveX. Please look at the following example that uses ActiveX to communicate with Excel.
    Writing Rows to Excel 97 and Excel 2000 Using ActiveX
    If you are not familiar to ActiveX and LabVIEW, please read the document below:
    ActiveX and LabVIEW
    I hope this
    helps.
    Sincerely,
    Feroz
    National Instruments

  • Because I can no longer open Adobe files, and have tried all obvious solutions, I've been told to defrag the Intel portion of my MacBook Pro. How do I do this?

    Because I can no longer open Adobe files, and have tried all obvious solutions, I've been told to defrag the Intel portion of my MacBook Pro. How do I do this?
    I never use the Intel side, and have never partitioned the MacBook Pro.
    Message was edited by: MacGirl221b

    I never use the Intel side,
    Not understood, Intel make the processor that runs your Mac, there is no other 'side' to your Mac.
    What Adobe application are you trying to open files with?

  • How do I open png files and maintain transparency?

    How do I open png files and maintain transparency?  I have many image files I had hoped to manage with aperture along with my photos.  I find that it wants to display them with a black bacground( they were designed for white) and when I want to edit that is kept even when I open with a psd format.  What do I do?
    Thanks

    and when I want to edit that is kept even when I open with a psd format.  What do I do?
    Transparency and layers are not supported in Aperture. You can import png-files or psd files with a transparent background and export the originals unchanged, but as soon as you edit them, the transparent background will be lost.
    Aperture is an application to manage photos and not graphics compositions, sorry.
    -- Léonie

  • I have an ipad air and I'm trying to play a video I purchased from iTu and it says cannot open not supported and the codec says protected. How do I fix?

    I have an ipad air and I'm trying to play a video I purchased from iTu and it says cannot open not supported and the codec says protected. How do I fix?

    FOR ASSISTANCE WITH ORDERS - iTUNES STORE CUSTOMER SERVICE
    For assistance with billing questions or other order inquiries, please refer to our online support page by clicking here: http://www.apple.com/support/itunes/store/. If you cannot find the answers you are seeking in our robust knowledge base, you can contact us by visiting the following URL http://www.apple.com/support/itunes/store/, clicking on the appropriate Customer Service topic, then using the contact button or email form at the bottom of the page. Responses to emails will be provided as soon as possible.
    Phone: 800-275-2273 How to reach a live person: Press 0 four times
    Hours of Operation: Mon-Fri: 9am-5pm ET
    Email: mailto:[email protected]
    How to report an issue with Your iTunes Store purchase
    http://support.apple.com/kb/HT1933
    https://reportaproblem.apple.com/
    iTunes Purchase Problems: How to Report a Problem to iTunes Support
    http://tinyurl.com/7tscpa7
    iOS: Troubleshooting applications purchased from the App Store
    http://support.apple.com/kb/TS1702?viewlocale=en_US&locale=en_US
    How to Get a Refund from the App Store
    http://gizmodo.com/5886683/how-to-get-a-refund-from-the-app-store
    Getting Refunds for your iTunes Store Purchases
    http://www.labnol.org/software/itunes-app-store-refunds/13838/
    Canceling a Digital Subscription
    http://gadgetwise.blogs.nytimes.com/2011/10/14/qa-canceling-a-digital-subscripti on/
     Cheers, Tom

  • I want to open a file and have it fill the desktop - how??

    I have recently moved over from CS2 on PC to CS3 in MAC - I used to be able to open a file and it would open up in a full window filling the whole screen - now it opens up in a box with no surrounding space. When I maximize the minute I tap cmd + the widow reduces to minimize and just zooms into a part of the file. I am sure this is basic stuff but any help out there please??
    gratefully
    Angus

    That's the difference between Macs and Windows. Windows opens applications in a... Window.
    Try hitting the F key and see if that works for you.

  • How to open a file, change the name and write file

    Hi,
    I want to open an existing .dat-file in Labview, manipulate the data and save this data into a new file with a different file name.
    Though the name should be different I would like to use the old name and add something to it.
    (In my programm the .dat file containes the date and time the data was
    measured and I would like to keep this information in the filename.)
    For example: the original title is file1.dat now I want to save it as file1_manipulated.dat
    Is that possible? What is the best and easiest way to do it?
    Thanks a lot
    Chris

    Hi Mike,
    thanks for your help.
    This will give me my path in string format. But to open a new file and then write my data into it, I need a path format (see right side of png)
    Is that right?
    I attached a png, so you hopefully get an idea where this is going. (I know this won´t work yet)
    I open a file and this filename depends on the date and time the data was recorded. So I can´t work with a stringconstant.
    Sorry for this beginner questions - this stuff is absolutly new to me.
    Thanks in advance
    Chris
    Attachments:
    newfile.png ‏11 KB

  • How open a file and not showing window?

    I write a script to do some work automatic,
    for Indesign script, its application open method could open a file and not showing window,
    the open method has a parameter [ShowingWindow] (if true, show the document window).
    That is good a feature for me.
    But with Illustrator, the application open method hasn't the same feature.
    Open
    (files as String,
    [documentColorSpace as AiDocumentColorSpace],
    [options as Object])
    and for OpenOptions properties, there is not useful information for me.
    Is there any other methods could do that?
    Any help is greatly appreciated.

    Thank for your reply.

  • How to import DivX files???

    How to import DivX files??? File format not supported... Adobe Premiere Pro CS4.

    I am with you, as I get handed all sorts of "stuff." I have a normal workflow, with about anything but DV-AVI (I only do SD for now), and that is do a batch conversion with DigitalMedia Converter. I have also found that some other NLE's are more lenient, regarding odd CODEC's. I have used PrElements, CyberLink PowerDirector (does DivX pretty well, with the CODEC installed) and Magix MovieProducer Pro.
    Still, PrPro is my NLE of choice by a great stretch, and I just use the others as tools to get the media in the proper form. I have been amazed at the spectrum of formats/CODEC's that people come up with, but also by how well (when you factor out those heavily compressed deliver-only format/CODEC's and the quality loss) I can convert, and then edit some of this stuff.
    It's just the way that it goes. It's like the client, who comes in with a DVD, created in some DVR unit, and wants it edited and shipped off on another DVD. Quality loss with 2x MPEG-2 Transcodes, and the first VOB is going to also have cr*p Menus and navigation, that I have to rip around. Still, the job gets done.
    With the Moyea FLV Importer for Premiere, I can even edit that junk, when they pull something off of YouTube (only if the © issues can be handled).
    Good luck, and sorry for the bad news. PrPro is very sensitive to the CODEC's that it will edit with. Others, well not so much, but who would want to edit with them?
    Hunt
    [Edit] PS - I have never been able to Export to Xvid, though I can Export to DivX just fine. Xvid hangs PrPro, and PrE too.
    Message was edited by: Bill Hunt - Added [Edit]

  • How to open a file created at the server through form/report at client end

    How to open a file created at the server through form/report at client end
    Dear Sir/Madame,
    I am creating a exception report at the server-end using utl file utility. I want to display this report at the client end. A user doesn't have any access to server. Will u please write me the solution and oblige me.
    Thanks
    Rajesh Jain

    One way of doing this is to write a PL/SQL procedure that uses UTL_FILE to read the file and DBMS_OUTPUT to display the contents to the users.
    Cheers, APC

  • How to open CR2 files in photoshop elements 10

    Who knows how to open CR2-files from a Canon Powershot S100 in Photoshop Elements 10?

    Hi,
    The version of Camera Raw that you reported should support the S100 CR2 images.
    If you load the editor, go to the File menu and select Open, then point to the file, are you saying that it displays the error message?
    Have you tried opening the file with Canon's Zoombrowser?
    Which operating system are you running on?
    Brian

  • How to open *.pdf files in BOXI r2 inbox

    I am scheduling as  *.pdf file for deski report.After scheduling i am getting *.pdf in my inbox.if the report is deski or webi we can use FC_REPORT_ENGINE or WI_REPORT_ENGINE to open the report's using java code.In same way how to open *.PDF file in Inbox?
    Edited by: ramkishore kishore on Nov 7, 2008 8:31 AM
    Edited by: ramkishore kishore on Nov 7, 2008 8:31 AM

    Hi Ram,
    Following information might help you to resolve the issue.
    After logging into Desktop Intelligence, you may be presented with a message stating:
    u201CYou have received 1 document from users"
    Examining the Inbox from within the Desktop Intelligence client shows no objects visible in your Inbox.
    The object in your Inbox is in a format other than Desktop Intelligence format such as, PDF, XLS or other format. Therefore the object is not recognized by the Desktop Intelligence client inbox browser.
    Log in to Info View or the Central Management Console, browse to your Inbox and verify the file name and format that has been sent to your Inbox. The object may be saved, copied, moved or deleted as necessary.
    Regards,
    Sarbhjeet Kaur

Maybe you are looking for

  • I'd like to replace my hard drive.  How do I know what to buy for my 15-inch early 2008 MacBook Pro?

    I am out of room on my hard drive.  I'd like to get a new hard drive and restore my data to the new drive from Time Machine.  How do I know what kind of hard drive to buy for my 15-inch, early 2008 MacBook Pro?  Also, how hard is this to do? 

  • I have a super slim usb 2.0.  Can't get it to work on macbook air.  Any ideas?

    I have just bought a super slim usb 2.0 disc drive but I can't get it to work on my macbook air and now a dvd is stuck in it!  Any ideas?

  • Maximum file size in KM

    Hi All, My Requirement is to restrict maximum size while uploading file in user personal documents in KM. I have referred the following links https://www.sdn.sap.com/irj/scn/thread?messageID=1167627 https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/w

  • Unload SWF.

    I recieved some help earlier with actionscript 3.0 and buttons. I wanted my buttons to load in a swf file into the main flash document when clicked. I can't seem to figure out how to get multiple swfs files loaded into the flash document. I also need

  • VPN settings not saved after upgrading ipad

    I got an ipad mini so I did a backup of my ipad 3 and restored that copy to the ipad mini. Everything was restored ok with the exception of my VPN settings, it's a VPN from work and now I can only access that network from my ipad 3, not form ipad min