Change file type classification? mkv as "Movie"

In short, I would like to make mkv files show up under the class of "Movie" in smart folders and such. I'm assuming that buried in some setting or file there is a list of extensions I can add "mkv" to. I would have thought this was a common question but so far forum trawling has got me nowhere. Can anyone shed some light? The reason, if you care to read is below, but it doesn't have that much bearing on the question.
I have a sizeable DVD collection, I also have a new job that puts me in hotels 5 weeks out of 6 for training. I don't want to carry them around as they'll get damaged and broken. Last week I left my MacPro chobbling away at encodes and now my entire DVD collection resides on a NAS as well as my shelves. I've created a simple automator finder service that will copy the selected files to a "Films" folder within the Movies folder that I've removed from the time machine backup so as not to waste space. This is set to only show up if the selected items are "Movies". As a consequence, it doens't appear for mkv's.
I know I can just alter the service to be there permanantly which is what I'll do for now, but it's not a very elegant solution.

I was able to change the extension in Windows, which then changed the file type. I'm still curious as to how to make the change directly on my MAC.

Similar Messages

  • Where is "save as" or how to change file type in Preview in Lion?

    Where is "save as" or how to change file type in Preview in Lion? I used to use Preview to change quickly change a lot of PNGs to either JPEGs or PDFs but with the introduction of versions auto save etc there no "save as" in the File menu. Any suggestions how to get this functionality back or how to get around it within OS X (no Photoshop etc)?

    Just wasted 15 minutes looking for that.  What's wrong with Save As?

  • Changing file type association through java

    hello all,
    here i had a problem like , we know when we try to open .csv file by default it wll open in excel , because the csv file type was associated with excel this we can see in mycomputer->tools->folder options->file types and here we even have the possiblity of changing the association.
    anyway, my question is that is there any way of changing this association like csv to oepn in wordpad through java program
    with regards
    satya

    i created a like wordCsv.reg
    REGEDIT 4
    [HKEY_CLASSES_ROOT\.csv]
    "Default"=string:Wordpad.Document.1
    when i click on this file i could see a message that the entry wassucessfully entried but i cannot see the entry
    is my approach was correct in adding entry in regedit programatically,
    please any more ideas
    http://jniwrapper.com/pages/winpack/downloads
    here in this link i saw some samples regarding changing file types association
    , dont now will it works
    since this is for win32
    i found a program FileTypeAssociation dont know will it works
    * Copyright (c) 2002-2005 TeamDev Ltd. All rights reserved.
    * Use is subject to license terms.
    * The complete licence text can be found at
    * http://www.jniwrapper.com/pages/winpack/license
    package com.jniwrapper.win32.shell;
    import com.jniwrapper.Function;
    import com.jniwrapper.LongInt;
    import com.jniwrapper.Pointer;
    import com.jniwrapper.UInt;
    import com.jniwrapper.win32.registry.RegistryKey;
    import com.jniwrapper.win32.registry.RegistryKeyType;
    import com.jniwrapper.win32.registry.RegistryKeyValues;
    import com.jniwrapper.win32.registry.RegistryException;
    import java.io.File;
    * This class provides functionality for creating file type associations.
    * @author Vladimir Kondrashchenko
    public class FileTypeAssociation
    private static final String FUNCTION_SHCHANGENOTIFY = "SHChangeNotify";
    private static final long SHCNE_ASSOCCHANGED = 0x08000000L;
    private static final long SHCNF_IDLIST = 0x0000;
    private String _extention;
    * Creates a class instance for associating files of the specified type.
    * @param extention specifies the file type by its extention.
    public FileTypeAssociation(String extention)
    if (extention.startsWith("."))
    _extention = extention;
    else
    _extention = "." + extention;
    * Creates a file type association.
    * @param executable an associated file will be passed as a parameter of this executable file.
    * @param progID the programm identifier in the registry. If the specified prog ID is not exist, it
    * will be created.
    public void createAssociation(File executable, String progID)
    if (!executable.isFile())
    throw new IllegalArgumentException("File not found.");
    String commandLine = "\"" + executable.getAbsolutePath() + "\" \"%1\"";
    createAssociation(commandLine, progID);
    * Creates a file type association.
    * @param commandLine specifies an executable command.
    * @param progID the executable programm identifier in the registry. If the specified prog ID is not exist, it
    * will be created.
    public void createAssociation(String commandLine, String progID)
    RegistryKey registryKey = RegistryKey.CLASSES_ROOT.createSubKey(progID+"\\shell\\open\\command", true);
    RegistryKeyValues values = registryKey.values();
    if (commandLine != null)
    values.put("", commandLine);
    else
    values.put("", "");
    registryKey.close();
    registryKey = RegistryKey.CLASSES_ROOT.createSubKey(getExtention(), true);
    values = registryKey.values();
    values.put("", progID, RegistryKeyType.SZ);
    registryKey.close();
    changeNotify();
    * Removes all associations for the file extention.
    public void removeAssociation()
    try
    RegistryKey.CLASSES_ROOT.deleteSubKey(getExtention());
    catch(RegistryException e)
    try
    RegistryKey.CURRENT_USER.openSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts").
    deleteSubKey(getExtention());
    catch(RegistryException e)
    try
    RegistryKey.LOCAL_MACHINE.openSubKey("SOFTWARE\\Classes").deleteSubKey(getExtention());
    catch (RegistryException e)
    changeNotify();
    * Returns the default executable command for the file extention.
    * @return the default executable command for the file extention.
    public String getDefaultCommand()
    RegistryKey key = RegistryKey.CLASSES_ROOT.openSubKey(getProgID());
    key = key.openSubKey("\\shell\\open\\command");
    RegistryKeyValues values = key.values();
    return values.get("").toString();
    * Returns the program identified of the default executable program.
    * @return the program identified of the default executable program.
    public String getProgID()
    RegistryKeyValues values = RegistryKey.CLASSES_ROOT.openSubKey(getExtention()).values();
    return values.get("").toString();
    * Returns <code>true</code> if a file type association for the specified extention is registered.
    * @return <code>true</code> if a file type association for the specified extention is registered.
    public boolean isRegistered()
    try
    RegistryKey.CLASSES_ROOT.openSubKey(getExtention());
    catch (RegistryException e)
    return false;
    return true;
    * Returns the file extention.
    * @return the file extention.
    public String getExtention()
    return _extention;
    private void changeNotify()
    Function function = Shell32.getInstance().getFunction(FUNCTION_SHCHANGENOTIFY.toString());
    function.invoke(null,
    new LongInt(SHCNE_ASSOCCHANGED),
    new UInt(SHCNF_IDLIST),
    new Pointer(null, true),
    new Pointer(null, true));

  • Change file type to pdf

    How do I change file type to pdf with windows 8 without paying? I was able to do this with windows 7 without paying.

    Actually, I guess it's possible you were using paid-for Adobe software and didn't realise it.
    Can you remember the steps you followed to make a PDF in your old system?

  • Changing file type when saving doesn't work

    How can I fix the problem where, if I change file type when saving, eg from tiff to jpg, the 'jpg' suffix is not appended in the save window? It remains as tiff. This has only started happening recently.

    I have a G5 iSight running OSX 10.4.11 with all the latest upgrades. The problem is about a week old.
    Yesterday I did a clean install of everything (not because of this problem) which I'm sure would have cleared the problem. But I was playing around with importing all my old PS and InDesign settings via copying the old preference files (and others), and the tiff/jpeg problem has reappeared. Seems to me like one of the files I copied, contains the problem. I suspect the only way out of this is to reload PS. But I was hoping it might be as simple as deleting a certain preference file.

  • Old icons remain after changing file type association

    I have several video file types in my Movies folder: MPG, MP4, AVI, and MKV.  Many of the file types are automatically associated with Quicktime Player, (despite it being unable to process them, such as the AVIs).  Being unable to play my MKVs at all, I downloaded VLC player to supplement.  I have since grown to like the additional features of VLC, and would like to use it as my player of choice for all movie files.
    Changing the file type associations was simple enough, (Get Info -> Open With, Set as default for each file type), however the pre-associated files still retain their original QT icon.
    How do I go about batch changing the incorrect QT-associated finder icons for icons that correctly represent their new association with VLC?
    Thanks for reading

    I was having that same trouble, but with ".rar" archives (in my case - OS X Yosemite), I tried all ways to solve it, following all kind of tips, like: choosing a new program as default to open the file, app cleaners, terminal commands, disk utility, etc.. but nothing worked. When finally I got problem solved, how I did it: 1) Download the program: Cocktail (http://www.maintain.se/cocktail/), after downloading, I got the message to register it, I simply clicked on "Remind me later". 2) Now, after installing it, configure Cocktail with this short tutorial, exactly as described (http://www.everythingmacintosh.com/tech-notes/maintain-your-mac-with-mac-os-x-co cktail/). After following 2 steps, Cocktail will be configured and will run, in the end your Mac will restart, you can now check that all your archives will be with correct icon (preview/thumbnail). Hope it helps!

  • Changing "file type" in Link Information Window (CS3)

    Hola,
    I am having a problem in Indesign (CS3), and I was wondering if anyone here might be able to help.
    I'm a student updating an older .INDD file for a 47 page book. The pages were all updated as .AI files, but for some reason
    3 of the pages in our InDesign document were assigned a .PDF "file type" in the Link Information window.  When I try and "Relink" to the updated .AI files,
    the program won't link to the .AI file. It will properly re-link to a .PDF version of the file.
    Is there a way to reset that "file type" in the Links Window from .PDF to .AI?
    Ultimately I can use .PDF versions for this, but I'd prefer to have them all .AI files.
    That would be cleaner and easier for the next students down the road who are going
    to inheriet this project.  It seems like this should be an easy thing to do, but I can't figure it out...
    Thank you very much for any information you can provide.  
    ¡Muchas gracias!
    Javier

    Hola,
    Thank you for the quick reply!  I now suspect that I didn't correctly identify the problem.
    In the Links Panel for 44 of the 47 pages, they read pathname/*.AI, so no problem there (although the file type is also .PDF in the link window for those 44 pages that can link to the .AI).
    For three of the pages though, when I try and link them to pathname/*.AI, I get an error message in the document that indicates that "this is an Adobe Ilustrator file that was saved without PDF content".  When I relink those three to pathname/*.pdf, they work.
    So I'm thinking at this point that the problem isn't Indesign, but with the original .AI files that I'm trying to link to. I also suspect that my original idea to change the "file type" in the Links Panel to ".AI" is incorrect, since it's a .PDF file type for all of the 47 pages in this document!
    ¡Muchas gracias!
    Javier

  • How to change file type associations in SAP ERP 6.0?

    Hello,
    I'd like to figure out how to change the application associated with a given file type in SAP. I want to open a .DOC file, but I am using OpenOffice instead of MS Word. I have .DOC file type already associated with OpenOffice in Windows XP, but SAP doesn't seem to recognize that association. I am using SAP ERP 6.0. Any ideas?
    Mike

    Hi,
    MS Word is mandatory. You will not be able to work using Open Office in SAP.
    Regards,
    Rajesh Kumar

  • Changing file type API to open with Adobe Reader 9.2

    In windows XP, if I go to C:\Program Files\Adobe\Reader 9.0\Reader\plug_ins, it shows the API extension to be File Type AcroExch.plugin
    This seems to be because Adobe Acrobat 5.0 is installed first on the PC, then Adobe Reader 9.2 is installed on the PC.
    On a clean PC, if I install Adobe Reader 9.2, then the file type becomes API file.
    How do I change the file type from AcroExch.plugin to API file?

    I want to do this because I have a 3rd party plugin which will not work otherwise.
    The 3rd party plugin is FileOpen Installer.
    http://plugin.fileopen.com
    If Adobe Reader 9.2 is installed on the PC first, then the folder c:\program files\adobe\reader 9.0\reader\plug_ins looks like the attached JPG Adobe Reader 9 Plugin working.jpg
    FileOpen Plugin works with the above situation.
    Note that it is a 3rd party supplier which sends files which require the 3rd party Plugin FileOpen and a test document is here
    http://fileopen.bl.uk:8008/FileOpenFreeLink-1.0/entryPage.do;jsessionid=FADC8178CCD0236480 199338A79483E7
    If Adobe Acrobat 5.0 is installed on the PC first and the Adobe Reader 9.2, then the folder c:\program files\adobe\reader 9.0\reader\plug_ins looks like the attached Adobe Reader 9 Plugin Problem.jpg and the test file sent by the British Library above will not open.
    You get the following when you try to open the British Library test file (see British Library2.jpg)
    FileOpen is installed as a 3rd Party Plugin in Adobe Reader 9.2 and I can see this under Help About 3rd Party Plugins FileOpen Installer.
    (Note Adobe Acrobat 5 runs via a network install and is not installed onto the workstation so I can't remove it via Add/Remove Programs).
    So I am guessing the problem is to do with the API file type being different when Adobe Acrobat 5 is installed first?
    Thanks,
    Paul

  • Changing file type when syncing to iPhone?

    Hello, is there a way to change the music file type when syncing my computer with my iPhone? I would like to store music on my compter as Apple Lossless, but then sync it as AAC to the iPhone. Under the iTunes 10.5.3 Advanced tab, I see that I can select songs and convert them inside of iTunes, but then it duplicates the song in my Library in the new format. I'm looking for a way to do this on the fly during the sync, if that is possible. Thanks.

    I see that setting now in iTunes when I plug in my iPhone, thanks. That appears to be the only bitrate option available, I was hoping to keep them at a higher quality for the iPhone, but not as high as Apple Lossless. Guess I'll just do the conversion in iTunes at 256 kbps AAC, sync those to the phone, and then delete them out of the library on the computer. It would be a cool upgrade to iTunes to have more bitrate options available.

  • How do i ADD a file type (such as Quicktime mov) that is NOT listed in the Content Type list?

    All the instructions I find when searching for how to ADD a file type just explain how to manage how Firefox handles that file type. And that is not possible when the file type is not in the list.

    Usually MOV is played by the QuickTime plugin. Some other plugins also may handle MOV. This is handled by entries in a hidden database, but you can view the contents if you type or paste about:plugins in the address bar and press Enter.
    In looking at your plugins list under "More System Details" I don't see QuickTime. Is it disabled (set to "never activate") on the Add-ons page? Missing?
    Tools menu > Add-ons > ''in the left column, click'' Plugins

  • Some mp3 downloads are coming up as adobe files and wont let me change file type

    I am trying to download mp3 files or music files and they are coming up as adobe files when the window pops up and it has no option to change the file type and i have clicked the other options and they dont change anything either (e.g. open, save etc) If you then go ahead and try to download it has finished withina few seconds and you have no music file at the end of it.

    .EXE files are not very easy to open on Macs with Mac OS X 10.4.3 or earlier. They typically require an emulation program to run Windows.
    See my FAQ*:
    http://www.macmaps.com/macosxnative.html#WINTEL
    Newer Macs are more capable of running Windows, and can do so natively. You can attempt to find a 10.3.9 compatible alternative compatible application as well. Audio and video files don't play very well on emulation, but work fine in Windows native compatible Macs.
    - * Links to my pages may give me compensation.

  • Can't change file type when saving EA3

    Hi,
    When I open test.txt and attempt to save it as test.sql I get an error:
    "Cannot convert file /Users/henrycollingridge/test.txt to file /Users/henrycollingridge/test.sql"
    I have tried changing the file type to sql, text and all files with the same result.
    I am running EA3 on OSX 10.5.
    Cheers,
    Henry

    Said so too in 30EA3 -> 1.1: Can't run/debug procedure from file , but no answer yet.
    Hope they fix these before release,
    K.

  • Applescript to change file type using folder action

    Just found out my Adobe Acrobat is saving PDFs with the filetype "FDP" and creator "ORAC" which is obviously the reverse of what they should be.
    There doesn't appear to be a fix for this, and for me it's a problem because when I copy these PDFs onto our Xinet WebNative asset management server the files aren't recognised as PDFs, so don't display a preview in the web page.
    So, I wanted to use a folder action that will set the Creator and Type to the PDFs whenever they are put into a folder on the server.
    Unfurtunately, although I can get this to work when using a script in the form of an application (so I drop PDFs onto it, I cannot get it to work as a folder action. It doesn't set the creator and type even though the same commands in a application script do work.
    *This is the code to my script which works fine as an application:*
    ====================
    property FileType : ""
    property CreatorType : ""
    on open theFiles
    tell application "Finder"
    activate
    set FileType to "PDF "
    set CreatorType to "CARO"
    repeat with eachFile in theFiles
    set the file type of eachFile to FileType
    set the creator type of eachFile to CreatorType
    end repeat
    end tell
    end open
    ===================
    *and this is what I'm trying to use for a folder action:*
    ===================
    on adding folder items to my_folder after receiving the_files
    set pdfs to {"pdf"}
    repeat with i from 1 to number of items in the_files
    tell application "Finder"
    set this_file to (item i of the_files)
    set the file_path to the quoted form of the POSIX path of this_file
    --set the file_path2 to the quoted form of file_path --can combine if file_path isn't needed
    set this_fileType to name extension of (info for this_file)
    end tell
    if this_fileType is in pdfs then
    tell application "Finder"
    activate
    set FileType to "PDF "
    set CreatorType to "CARO"
    end tell
    end if
    end repeat
    end adding folder items to
    ==================
    I know it processes the file but it doesn't actually change the creator type.
    *If only Apple would fix this bug in the first place!*

    Your folder action script isn't using the same commands, and doesn't do anything about setting file types or creator codes at all. Something like this should do the trick:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFEE80;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    on adding folder items to my_folder after receiving the_files
    set pdfs to {"pdf"}
    repeat with each_file in the_files
    set this_fileType to name extension of (info for each_file)
    if this_fileType is in pdfs then
    tell application "Finder"
    set file type of each_file to "PDF "
    set creator type of each_file to "CARO"
    end tell
    end if
    end repeat
    end adding folder items to
    </pre>
    ... and by the way, Apple doesn't have anything to do with the file types, creator codes, or other application specific settings that an Adobe application sets for itself.

  • Unable to change file type to audio book; previously able to.

    I have some audio book files (mp3) that I have added to my iTunes library and am trying to change the type to "audio book" by doing the standard right click and get info and changing to audio book etc.  However, iTunes is only actually changing them to audio books some of the time; the books that are and are not converting are both the same file type (mp3). Whenever it does not change it over, iTunes literally does not do anything (as in it does not try to change it and then fail). I am unsure what the issue is, can anyone help? Thanks!
    Windows 8.1   64 bit
    iTunes 11.3.1.2

    Hi,
    There is no preference but it turns out you can manually edit one of the preferences.xml files to force PL/SQL types to use the SQL worksheet editor. For SQL Developer 3.2.20.09.87 that file is system3.2.20.09.87\o.sqldeveloper.11.2.0.9.87\preferences.xml and will be located (on Windows 7, for example) in directory C:\Users\<userid>\AppData\Roaming\SQL Developer
    No guarantee this will work in future versions of the product, but for now you can add the following two xml blocks...
    For example, for .pls, add to <extensionToContentTypeMap ...>
                <Item>
                   <Key>.pls</Key>
                   <Value>TEXT</Value>
                </Item>
    and <userExtensionList>
                <Item>
                   <docClassName>oracle.ide.db.model.SqlNode</docClassName>
                   <userExtensions class="java.util.ArrayList">
                      <Item class="oracle.ide.config.DocumentExtensions$ExtInfo">
                         <extension>.pls</extension>
                         <locked>false</locked>
                      </Item>
                   </userExtensions>
                </Item> I researched this a while back after reading through some forum thread where someone claimed the PL/SQL file extensions got opened in the SQL editor in his environment, but without stating any specific release information. Possibly it worked for him then due to different product behavior (whether intentional or a bug), or perhaps even due to the technique described above.
    Regards,
    Gary
    SQL Developer Team

Maybe you are looking for

  • ITunes 7.1 want load due to Audio Problem

    I upgraded to iTunes 7.1 and I can not load it as I get a message pop-up telling me "iTunes cannot run because it has detected a problem with your audio configuration" Thers nothing wrong with it and it won't tell me what that problem is ??? I am usi

  • Queries on the 9iAS

    Hi , Could any body explain me the 9iAS architecture. I would like to know the following. 1. Where will web cache fit in ? This needs to be installed before HTTP server, does this needs to be installed in a separate machine or in HTTP server itself o

  • Log4j does not find properties file (but its in the classes directory)

    I am using eclipse, I have created a log4j object:      private static Logger logger = Logger.getLogger(Http.class.getName());When I try to run the test case, I get: log4j:WARN No appenders could be found for logger (com.cable.comcast.nsec.common.Htt

  • Why is your service getting so bad?

    I switched from Sprint with unlimited everything to come to att because the service was better. The last six months though the service has gotten worse than it was with sprint but I'm paying a lot more. I guess you just can't win, these big companies

  • Prevent change of Ship-to address in Sales Order entry ?

    We want to be able to prevent users from changing the Ship-to address in either VA01 or VA02, if the Ship-to has a specific Account Group. I am aware that we could do a check in a userexit, but our preference would be to grey-out the address fields i