|
|
| Welcome to the Mac Forums forums. Please read the FAQ if you have questions. Register to participate. |
|
|||||||
| TouchArcade.com - iPhone Game Reviews and News |
![]() |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
macrumors regular
Join Date: Oct 2006
Location: London, Ontario, Canada
|
AVI to iTunes
i have bunch of avi shows my brother gave me and i would like to have them in my iTunes lib, what program would you guys recommend to use to convert them to the compatable format for iTunes
thank you |
|
|
|
|
|
#2 |
|
macrumors 68040
|
As long as QuickTime can play them, they can go in iTunes, no conversion required. If you don't have the codecs, go get Perian for QuickTime.
Of course, they won't go on your iPod. If you want to do THAT, you do have to convert them, in which case I recommend something like iSquint or ffmpeg X.
__________________
killmoms.com - Well, don't really. Goodbye Velocity and Yaseko, say hello to... Henrietta: 15" MacBook Pro, 2.33GHz C2D, 2GB RAM Kyoko: 8GB iPhone |
|
|
|
|
|
#3 |
|
Contributor
Join Date: Nov 2005
Location: Oxford, UK
|
You should also get Flip4Mac.
|
|
|
|
| Eraserhead |
| View Public Profile |
| Find More Posts by Eraserhead |
|
|
#4 |
|
macrumors 68040
|
Eraserhead sweeps in and corrects my oversights.
Thanks! Yes, Flip4Mac is the other good QuickTime component to have.
__________________
killmoms.com - Well, don't really. Goodbye Velocity and Yaseko, say hello to... Henrietta: 15" MacBook Pro, 2.33GHz C2D, 2GB RAM Kyoko: 8GB iPhone |
|
|
|
|
|
#5 |
|
Thread Starter
macrumors regular
Join Date: Oct 2006
Location: London, Ontario, Canada
|
i have flip4mac and my avi files play when i open them in quck time
but for some reason i can not add them to iTunes lib so i can see them on there, does that have to do anything with them not being .mpg or mg4 format |
|
|
|
|
|
#6 |
|
macrumors 68040
|
Hmm. If iTunes can't add the AVI file format even though QuickTime can play it, that's kinda weird.
In any case though, you could always just save them as .movs from QuickTime. That'll take the video and audio stream in the AVI and re-package them as a QuickTime movie without transcoding. You might need QuickTime Pro to do that.
__________________
killmoms.com - Well, don't really. Goodbye Velocity and Yaseko, say hello to... Henrietta: 15" MacBook Pro, 2.33GHz C2D, 2GB RAM Kyoko: 8GB iPhone |
|
|
|
|
|
#7 |
|
macrumors regular
Join Date: Jul 2005
|
iTunes can't play AVI (Divx) files
You need to convert them to MPEG4.
Use iSquint (shareware) Just set the file size to be the same as the original and you can then drag and drop the converted file into itunes. |
|
|
|
|
|
#8 |
|
macrumors 6502
Join Date: Sep 2006
|
Similar to above, except I prefer ffmpegx, which allows for a queue.
.avi files can NOT go into iTunes. |
|
|
|
| RedDragon870503 |
| View Public Profile |
| Find More Posts by RedDragon870503 |
|
|
#9 |
|
macrumors 6502
Join Date: Nov 2006
|
Actually, iSuqint is free. VisualHub is the pay version, and is infinitevely more powerful.
|
|
|
|
|
|
#10 |
|
macrumors regular
Join Date: Jun 2004
|
Well... this isn't exactly correct.
If you have QuickTime Pro (not sure if you can do it in the non-Pro player), open your movie, and then go File > Save as > Save as reference movie. This creates a very small (usually 15k ~ 20k) file that iTunes will happily import, and through that, you can play anything that QuickTime can normally play but iTunes won't allow in its library. There are a few major upsides to doing this, as well. You don't have to litter your music file with video files, only the reference files, so you can leave your videos where you want them. As well, while some videos can be brought into iTunes, not all allow for full editing (for example, some file types won't allow you to set the movie's thumbnail image). Reference files are fully editable under iTunes. |
|
|
|
|
|
#11 |
|
macrumors newbie
Join Date: Nov 2007
|
hmm, the reference movie solution worked great for me EXCEPT for one big thing, I can't seem to set movie artwork (album artwork..). I go to get info and I set the artwork, but then it just reverts back to the thumbnail. Anyone else having that problem?
|
|
|
|
|
|
#12 |
|
macrumors 65816
|
I believe iTunes uses the poster frame as the image. You can set the poster frame using QuickTime.
|
|
|
|
|
|
#13 | |
|
macrumors member
Join Date: Nov 2007
|
Quote:
for life (when it works)
|
|
|
|
|
|
|
#14 |
|
macrumors newbie
Join Date: Dec 2007
|
I've been looking into using iTunes to manage some avi TV shows as well as music clips and ran into the same problem, and solution. Since I think using QT-Pro to make a wrapper for the file a bit of a hack I looked into other ways to get this to work.
The reason iTunes does not play avi files can be plainly seen in iTunes.app/Info.plist under "CFBundleDocumentTypes". iTunes can also recognise video files by the optional meta-data associated with the file in place of the extension. As there is no entry for .avi and most .avi files do not have the extra meta-data iTunes does not support them. There are three ways to get .avi files to load into the iTunes library, these are packaging it in a supported format (QT-Pro workaround), adding extra entries to the CFBundleDocumentTypes (may cause problems when updating iTunes) or adding the movie-type meta-data to the file. Adding the movie-type meta-data to the file is the quickest, easiest and safest of all of these options (IMHO). The file-type meta-data can be changed by using Terminal or Applescript/Automator by doing either of the following (note that iTunes does not check the creator type): Terminal (requires Apple Dev Tools) Code:
$ SetFile -t "MooV" /path/to/movie.avi Code:
tell application "Finder" set file type of file this_file to "MooV" end tell The next step would be to create a Folder Action or a Droplet that adds the movie-type meta and adds the file to iTunes, see below: Code:
(*add movie to iTunes The script will add OSList file-type information to a list of files. This identifies them as movie files, the files are then imported into iTunes. TO DO: Verification of file list passed as video files Growl integration (if installed) Move repeat loop into separate object script to clean-up code. *) --Folder Action [Attach to a folder in Finder] on adding folder items to this_folder after receiving file_list repeat with each_file in file_list try tell application "Finder" to set file type of file each_file to "MooV" end try end repeat tell application "iTunes" to add file_list end adding folder items to --Droplet [Compile and drop items onto application] on open file_list repeat with each_file in file_list try tell application "Finder" to set file type of file each_file to "MooV" end try end repeat tell application "iTunes" to add file_list end open I've reposted this at http://forums.ilounge.com/showthread.php?t=214705 where it may eventually find it's way to Doug's Applescript page which is one of the first places I looked for something like this (instead of writing it). Last edited by nevyn : Dec 16, 2007 at 09:48 PM. Reason: Reposted elswhere, might be additional updates/improvements there. |
|
|
|
|
|
#15 |
|
macrumors 6502
|
You should definitly get the perian codec. That should help.
Here are also quicktime components: http://www.apple.com/quicktime/resou...omponents.html For video conversion (to have your videos play in your ipod) i second iSquint (http://www.isquint.org/) But if you are willing to pay for a great product (this is worth it, I'm telling you), then you sould get VisualHub: http://www.techspansion.com/visualhub/
__________________
20" iMac Core Duo, 2GHz, 1GB, 250GB 15.4" iMac G4, 700MHz, 256MB, 40GB |
|
|
|
|
|
#16 | |
|
macrumors 6502
|
Quote:
I remember having to set my album artwork to be the same for all of my family guy episodes, since i was originally trying to get different album artworks for different seasons, but that didnt work. Also, what I figured, is that you have to go to each movie file INDIVIDUALLY to 1) delete the current album artowrk 2) without closing the info window, (doing so would revert the album artwork to what it was) paste or drag the desired artwork. I'm not 100% about all this, since this was a while back, but i know that i succeeded in it. If what i said doesn't work, or make any sense, then just try playing around with it, there has to be a workaround. try working with individual files, rather than changing multiple at a time. Also, Go to Doug's Applescript page. That Really helped, when i was trying to work with individual files but didn't want to copy, and re-copy the others to the desktop (putting the hard drive to work, basically). What i did was to just change the video kind of all the files of a certain tv show with Doug's script except for one, that way you can work with an individual file, without actually having to move/copy/paste/delete the files all around in your hard drive. I hope i made some sense, and i hope this is what you were talking about.
__________________
20" iMac Core Duo, 2GHz, 1GB, 250GB 15.4" iMac G4, 700MHz, 256MB, 40GB |
|
|
|
|
|
|
#17 |
|
macrumors 6502
Join Date: Nov 2006
|
I prefer iSquint... very good program.
|
|
|
|
|
|
#18 |
|
macrumors newbie
Join Date: Dec 2007
Location: Belgium
|
I prefer typing this in the Terminal for setting the movie-type meta-data on a complete folder of .avi files.
Code:
$ SetFile -t "MooV" /path/to/movies/*.avi
__________________
iPod Shuffle 2G 1GB (2008/Okt) iPod Touch 2G 8GB (2008/Sep) MBP SR 2,2GHz 4GB RAM (2007/Jun) (OS X 10.5) Last edited by Sandpiper : Jan 4, 2009 at 09:06 PM. |
|
|
|
|
|
#19 |
|
macrumors 6502
Join Date: Feb 2008
|
__________________
Mac Pro 1,1 Quad2.66 | 5gB | 8800GT | Mac OS X | 23" ACD | 46" Bravia | PS3 30gB iPod 8gB 3g iPhone |
|
|
|
|
|
#20 |
|
macrumors newbie
Join Date: Jun 2008
|
Brilliant - but 1 more thing
Applescript:
Code:
tell application "Finder" set file type of file this_file to "MooV" end tell The next step would be to create a Folder Action or a Droplet that adds the movie-type meta and adds the file to iTunes, see below: Code:
(*add movie to iTunes The script will add OSList file-type information to a list of files. This identifies them as movie files, the files are then imported into iTunes. TO DO: Verification of file list passed as video files Growl integration (if installed) Move repeat loop into separate object script to clean-up code. *) --Folder Action [Attach to a folder in Finder] on adding folder items to this_folder after receiving file_list repeat with each_file in file_list try tell application "Finder" to set file type of file each_file to "MooV" end try end repeat tell application "iTunes" to add file_list end adding folder items to --Droplet [Compile and drop items onto application] on open file_list repeat with each_file in file_list try tell application "Finder" to set file type of file each_file to "MooV" end try end repeat tell application "iTunes" to add file_list end open Brilliant, scripts work perfectly - but I only want to add a reference file so I am just changing the type and then dragging the files onto iTunes whilst holding the alt key. Can the script tell iTunes to add the file without importing it? Thanks |
|
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|