Converting WMV and non apple files on the net

I'm very new to apple, and I love my new machine, however, I cannot open any microsoft based files eg. wmv files on the internet and I thought that the conversion would be much simpler. I called tec support and was directed to flip4mac.com, however I couldn't install the wmv converter onto the macbook, has anyone figured this out??
Please Help
Drew

Flip4mac.com will have a Universal version of their plugin soon. It is the best option as it will run natively on the Intel chip.
You might be able to find an old version of Windows Media Player for the Mac but it is being discontinued.

Similar Messages

  • The Case of Missing ID3 Tags... and non-Apple devices, like the Sonos

    Ever since the debut of iTunes 6, devices other than my Mac and my iPod have been unable to find the ID3 tags associated with .mp3 files. If I rip a CD in iTunes 6 or 7, artist/album/track data (and album artwork) display properly in iTunes and on my iPod; but when I update my Sonos music library, for example, all it is able to see is the file name. So, for example, if I rip Jimi Hendrix's "Are You Experienced," the track "Purple Haze" shows up in iTunes correctly associated with "Hendrix" and "...Experienced." On the Sonos system, however, all it sees is the track "Purple Haze.mp3." No artist. No album. Ditto for placing one of these .mp3 files on a non-Apple mp3 player: track name only shows up. Bizarrely, if I rip CDs on an older PPC G4 running iTunes 4.0, and then import those files into either iTunes 6 or 7, the ID3 tags remain married to the files. Anyone have a solution to this vexing problem?
    PowerBook G4   Mac OS X (10.4.8)   2 Gigs SDRAM
    Core Duo iMac   Mac OS X (10.4.8)   2 Gigs SDRAM

    In the newer versions of itunes 6+7 (don't know about 5) iTunes by default will rename the file on the HD to match the info in the "Name" column of iTunes - this is true if you have the "Keep" option selected in iTunes prefs>Advanced>General.
    With iTunes 4 this was not true. I would use one of Dougs scripts to rename all my files on the HD to be Artist-Song Name. You can still do this in iTunes 6+7 if you turn off the "Keep" option or you don't edit any info in the id3 tag once you have run the script.
    I know nothing of the Sonos and other stuff - I can only think that is reading only the file sname and not the id3 tag info. If it doesn't have the capability of reading and displaying the id3 tag info then I think you are out of luck. iTunes is reading the id3 tag info.
    MJ

  • IWeb and non-iWeb files @ same site?

    I have modified my CNAME at my personal domain site to forward to MobileMe, and I am not having any problems with that aspect. What I am wondering is ... can I have both iWeb files and non-iWeb files at the same site and still use MobileMe?
    Basically, I want to use iWeb for my main family web site, but still have my Wordpress blog as well as some older web pages that I don't want to convert to iWeb. Right now, anything that starts with my domain name is pointed to MobileMe, which precludes access to the non-iWeb files.
    Not sure if this is clear or not, but if anyone has any pointers, I would be very grateful.

    Thanks for the advice about putting the other files on MobileMe - I didn't know you could host non-iWeb pages there.
    Unfortunately, I actually don't want to store them there. My Wordpress blog is hosted on my own server (it's not a wordpress.com blog), and my old files are large and I don't want to burn up all the space on MobileMe. I have a ton of space and other good hosting services as my provider (doteasy). I do, however, like the features of iWeb for my main family page, so I want to be able to publish to MobileMe, but still have the domain function as well, with some pages accessible only through the domain, not MobileMe.

  • I have a new Apple TV which is working fine except that I cannot access .mov files which are in my iTunes Library. How can I get to these? I can run them on my computer and select Apple TV on the screen, but the Apple TV goes to a black screen

    I have a new Apple TV which is working fine except that I cannot access .mov files which are in my iTunes Library. How can I get to these? I can run them on my computer and select Apple TV on the screen, but the Apple TV goes to a black screen

    Mov is a container format, you'd need to look at the codec used by the movie file inside the container to know whether it will work with the Apple TV or not.

  • AppleScript - Writing to non-existent directories, and non-existent files..

    All,
    AppleScript - Writing to non-existent directories, and non-existent files...
    Creating directories several levels deep on the fly.
    How do we write to a file that does not exist, buried deep down in a hierarchy of directories that don't exist either...
    In trying to do this I explored two options. One used AppleScript, assisted by UNIX, which was simplicity itself, the other one used only AppleScript and was considerably more complex, and slower.
    http://www.mac-specialist.com/r/asckdirs.html
    Hope these are useful,
    Best Regards,
    Bill Hernandez
    Plano, Texas

    Simplified code examples - lacking extensive error checking -
    UNIX example 001:
    set file_Name to "Sales Figures.txt" -- File to create.
    set file_Path to "2006 Sales:Forecast:Fruits:Flordia:Oranges:Large" -- Folder to create.
    set UNIXfilePath to (quoted form of (POSIX path of file_Path))
    try
    do shell script "mkdir -p " & UNIXfilePath -- Attempt to create a folde, and respective intermediary folder(s).
    end try
    try
    do shell script "touch " & UNIXfilePath & "/" & file_Name -- Attempt to create a blank file.
    end try
    UNIX example 002:
    set file_Name to "Sales Figures.txt" -- File to create.
    set file_Path to "2006 Sales:Forecast:Fruits:Flordia:Oranges:Large" -- Folder to create.
    try
    do shell script "mkdir -p " & (quoted form of (POSIX path of file_Path)) -- Attempt to create a folde, and respective intermediary folder(s).
    end try
    -- Create a file, and enter some text.
    set FREF to open for access file (file_Path & ":" & file_Name) with write permission
    write "Beispieltext" to FREF
    close access FREF
    AppleScript example:
    set file_Name to "Sales Figures.txt" -- File to create.
    set file_Path to "2006 Sales:Forecast:Fruits:Flordia:Oranges:Large" -- Folder to create.
    -- Obtain list of text items of 'file_Path'.
    set {oAStID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, ":"}
    set filePathList to text items of file_Path
    set AppleScript's text item delimiters to oAStID
    tell application "Finder"
    set folder_Path to name of startup disk -- Obtain name of boot disk.
    repeat with i in filePathList -- Cycle through list.
    try
    make new folder at folder_Path with properties {name:i} -- create folder.
    set folder_Path to folder_Path & ":" & i -- Create new path for next new folder.
    end try
    end repeat
    end tell
    -- Create a file, and enter some text.
    set FREF to open for access file (folder_Path & ":" & file_Name) with write permission
    write "Beispieltext" to FREF
    close access FREF
      Mac OS X (10.4.4)  

  • Programatically convert CS5 and CS6 illustrator files to lower versions

    Is there a way to programatically convert CS5 and CS6 illustrator files to lower versions (CS4, CS3 etc) programatically. Are there any third party tools to do it or does Scripting let you do that.

    The illustrator save options has a property for dealing with backward compatibility… As far as I know you can only do this using Illustrator…

  • I am getting a message that sys startup disk is almost full. I cleaned all my old emails out, archived old ones i needed and erased most files on the computer. I restarted but I'm still getting the message

    I am getting a message that sys startup disk is almost full. I cleaned all my old emails out, archived old ones i needed and erased most files on the computer. I restarted but I'm still getting the message

    Reindex Spotlight again.
    http://support.apple.com/en-us/HT201716
    Do not concern yourself about the backups.  They will be deleted automatically if space is needed for other data:
    http://support.apple.com/en-us/HT202301
    Ciao.

  • Can I import and open raw files on the new photo app?

    Hi,
    Can I import and open raw files on the new photos app on my ipad?  Does it convert it to jpeg automatically when you want to share them?
    Thanks.

    Clem is telling you to click on the View menu, move the pointer down to the item "Metadata," & from its choices make sure "Show Titles" is selected. Do this, then make sure you are in a view in the main window that shows one or more videos (or whatever) that you want to title. Click once on one of them, & if the separate Info window is not open, open that (on the Windows menu or command + i as a keyboard shortcut). In the Info window the top line will be "Add a Title."
    Click once on that & type your title.
    This works for any item, video or photo.

  • WHen I choose an album, upload a file(s), just as the file(s) is uploaded the file I have chosen disappears and I am asked to choose album again. If I ignore this and drag a file onto the sceneline, I get the "where is the file " message" and when click o

    WHen I choose an album, upload a file(s), just as the file(s) is uploaded the file I have chosen disappears and I am asked to choose album again. If I ignore this and drag a file onto the sceneline, I get the "where is the file " message" and when click on the file it is looking for I get the message "This type of file is not supported, or the required codec is not installed". I have made many little films before but always have this problem now. Any suggestions?

    Margaret
    Although we are continents apart - Australia (Perth) vs North America (US), we will not let time zones interfere with getting your Premiere Elements 8.0/8.0.1 working.
    1. The usual Premiere Elements 8 drill.
    a. Are the automatic features of Background Rendering and AutoAnalzyer turned Off?
    For Background Rendering, see Premiere Elements workspace Edit Menu/Preferences/General. For AutoAnalzyer, see Elements Organizer workspace Edit Menu/Preferences/AutoAnalyzer Options.
    b. Are you running the program from the 8.0.1 Update? If not, see Help Menu/Update?
    c. Do you have the latest version of QuickTime installed on your computer with Premiere Elements 8.0/8.0.1?
    Apple - QuickTime - Download
    2. The usual computer drill....for your Windows XP 32 bit (SP3, I presume)
    a. Is computer opitimized, defragmented, etc.
    CCleaner - PC Optimization and Cleaning - Free Download
    b. Are you running your computer from a User Account with Administrative Privileges? That is important for Premiere Elements 8 as well as for its
    required QuickTime. In addition, right click the computer desktop icon for Premiere Elements 8 and select and apply Run As Administrator.
    3. Project Specifics
    For now, import your source media into the project from the computer hard drive using the project's Get Media/Files and Folders. Leave the Elements Organizer and Albums out of the equation for now. We will circle back to it soon after we decide everything else is working as it should be.
    a. You need to set a project preset. And, that project preset should match the properties of your source media. So important to know properties of source media.
    b. When you import your source media into a project you will get a red line over its content if the project preset is not a match - either because you set the wrong one or the program does not have a match for your particular video. That red line means that you are not seeing the best possible preview of what is being played back in the Edit area monitor. To get the best possible preview, you hit the Enter key of the computer main keyboard to get a rendered Timeline (red line goes from red to green after this type of rendering). That green line over your rendered Timeline indicates that you are now getting the best possible preview. This is solely a preview thing. Longer story, but I will leave it at that for now.
    c. Check Edit Menu/Preferences/Scratch Disks to assure that those Scratch Disks are being saved to a computer hard drive location with enough free space to accept them. Make sure that you do not have pile ups of previews files, conformed audio files, and conformed video files.
    See Local Disk C\Documents and Settings\Owner\My Documents\Adobe\Premiere Elements\9.0
    Never move, delete, or rename source files after they have been imported into a project which has been saved/closed. Otherwise, nasty media disconnect problems. You have only copies of media in Premiere Elements. The originals are on the hard drive, and the project must trace back to the originals where they were at import.
    Based on the above, try to start a new project. But, let me know ahead of time what you will be importing into the project. I am looking for
    Video
    video compression
    audio compression
    frame size
    frame rate
    interlaced or progressive
    pixel aspect ratio
    If you do not know, we could try to get that type of information from knowing the brand/model/settings for the camera that recorded the video.
    Photos
    Pixel dimensions and how many photos?
    Lots and lots of details, but eventually they all mellow into one workflow that you can customize for your projects.
    Please do not hesitate to ask questions or to ask for clarification. We can go at whatever pace you feel comfortable with.
    ATR

  • How do I transfer ring tones between ipad and non-apple phone using bluetooth

    Can I transfer ring tones between ipad and non-apple phone using bluetooth?

    No. iOS devices do not support file transfers between non-iOS devices over Bluetooth.
    They probably wouldn't work anyway, as iOS ringtones have to be in a specific format.

  • I plugged in an non apple headset, afterwords the f****** s*** wont play on the iphone speaker. what ?

    I plugged in an non apple headset, afterwords the f****** s*** wont play on the iphone speaker. what ?

    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable       
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • It is 2013 and has apple sorted out the tax problem for UK residents? Do we still have to have anEIN to publish on ibooksauthor?

    It is 2013 and has Apple sorted out the tax problem for Non US residents publishing on iBooks? Do I still have to get an EIN when I will be selling in UK?

    LaraBland wrote:
    ...  but it continues to tell us we need to enter the passcode.
    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps..

  • I recently updated my macbook, i don't know if that has any effect to my recent problem, but when i try to download and save .mp3 files from the internet, like i have done in the past, it downloads but not as an mp3 file, its "blank"

    i recently updated my macbook, i don't know if that has any effect to my recent problem, but when i try to download and save .mp3 files from the internet, like i have done in the past, it downloads but not as an mp3 file, its "blank" and when i try to open it, i can't? I NEED HELP !

    Here is the download page

  • How to download a file from the net and save it into .txt format in a datab

    Can some one show me a tutorial on how to download a file from the net and save it into .txt format in a database?
    Thank you,

    http://java.sun.com/docs/books/tutorial/networking/urls/readingWriting.html

  • HT4314 I have 4 iPads and one apple Id. Two the devices record clash of clans and dragonvale individually and the other two are tied to the other two. Drives my kids nuts. How do I fix this?

    I have 4 iPads and one apple Id. Two the devices record clash of clans and dragonvale individually and the other two are tied to the other two. Drives my kids nuts. How do I fix this?

    Also, I'd prefer to keep the same ID on both so I will keep access to my calendar/contacts/etc on both devices.  Would I be able to share reminders and voice memos and the like as well?  And how often would they update each other?  If I edit a contact on the 5, and the 4 is in wifi, assuming they're both on my same ID, will the contact update on the 4? 

Maybe you are looking for

  • Advice on how to set up router

    My internet provider is Fido and it's a plug and go set-up whereby you just plug in the modem and you're connected. It's like Bell and Rogers internet anywhere services. I have purchased a Linksys WRT150N router and a WMP300N wireless PCI adapter. Wh

  • Ios7 audio is bad

    After update from IOS6 to IOS7 on my Ipad 2 my audio is distorted and noisy how do I correct this

  • How to group this colum ?

    Hi, I have this request : select b.nom, d.libelle, a.TOTAL_HEURES from observatoire.fiche a, observatoire.agent b, observatoire.activite_faite c, observatoire.activites d where equipe_id = 161 and a.agent_id = b.agent_id and a.fiche_id = c.fiche_id a

  • Universe overload migration failure

    Hi All, Iu2019d like to ask your help concerning an issue that Iu2019m charge of resolving. It's concerning the migration of universe overload from a source to a destination. Two unviverse restrictions are applied on two groups in the source: Rest1->

  • Back in the Game

    Hi everyone,                     it's been 5 years since i've used flash so i'm working off the rust in my memory as to how to use this program. i'm using Macromedia Flash MX (yea i know it's old) to do a video project with commentary. which is suppo