File types for Playback in MainStage 3?

I have some questions about utilizing Playback in Mainstage 3.  What types of files can I load into the Playback interface?  Does it ONLY take .WAV files?  I would really like to import mp3's or complete songs into Playback so I can play along without having to use iTunes.  If it only takes waves, then I have to save songs in that format, which would require very large files.  Any thoughts?
Also, can I have different patches within my concert that each have a different file in Playback?  For example, can I create a dozen different patches within the same concert, and have each one contain a different file in Playback?  If not, then I would probably have to create a seperate concert for each one which isn't really ideal.
I know I can use Playback for loops, song components, etc. - and I understand that perfectly well.  I just want to also utilize it to play along/practice with songs from my library, and I'm not sure if it's really the best way to do that.
Thanks!

Wave, AIFF, CAF, AAC, and - I think - also MP3.
Yes, each patch can have a channel strip with a playback instance with it's own file.

Similar Messages

  • Changing default open with for file type for all users

    hello
    can I change the default app to open a specific file type for all users and not juist for my user?
    i am admin for my mac mini.
    tnx
    gil

    What applications are offered for open with depends on the application itself informing the system it can open certain files, plus your own custom selections for opening files. Evidently the alternate app you want to use does not claim to be able to open the files you are assigning it. If you have a plist editor and know how to use it you could edit the info.plist file inside the application itself to add the file type you want to the application's declaration of file types it will open. Then restart so the system will read that declaration. I think it would be far easier to simply launch the application and then drop a file you want it to open onto its icon in the Dock.
    Francine
    Francine
    Schwieder

  • Passing the file name and file type for mime_download

    HI All,
    Can You Please let me know how to pass the parameters file name and file type for mime_download.
    Thanks in Advance.
    Regards,
    Haritha.

    Hello Haritha,
    Please see the SAP help:
    http://help.sap.com/saphelp_nw70/helpdata/en/46/9bd97240b81e5be10000000a1553f6/frameset.htm
    Edgar

  • Can I change the default 'File Type' for PL/SQL Source File to '*.prc' ?

    Want to change the 'default' extension for PL/SQL source to '*.prc'
    When navigating 'File' / 'Save As', and selecting the 'File Type' list box,
    The default 'File Type' for PL/SQL Source File is '*.pls'.
    Can I change the default 'File Type' for PL/SQL Source File to '*.prc' ?
    I have followed , 'Tools', 'Preferences' , 'File Types' and added '.prc' as 'Sql Script' file type, because (PL/SQL Source) is not present in the list.

    You can certainly overwrite the 'Save As' extension as you are saving the file. I have added an ER for more control over this functionality.
    sue

  • How to setup a routing rule for a specific file type for the content organizer?

    Hello,
    how can I set a routing rule for a specific file type, for example for "pdf" or for "docx", for my content organizer?
    As standard I can only choose for the rules the content type, name and title of the file uploaded.
    Thank you in advance!
    JohnyG

    Hi Johny,
    Based on your description, my understanding is that you want to create a routing rule for a specific file type.
    I recommend to create rules with the conditions as the image below shows for the Document content type(for example: .docx files):
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Unable to change File Type for specific file extensions

    Under Preferences->File Types different file extensions are assigned a file type e.g. The file extension .pkb is assigned the file type of PL/SQL. The file type of PL/SQL then opens the Code editor.
    I have a user who would prefer to open .pkb files in the SQL Worksheet editor but I am unable to change the file type to SQL Script as the option is greyed out.
    How do I change the File Type for these extensions? Is there a preferences file I need to change?
    Version: 3.2.20.09
    Thanks for your help.

    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

  • How to set default file type for Open dialog

    Dear my friends,
    I am using "At selection-screen ON VALUE-REQUEST FOR filepath" to display open dialog and i want to set default file type for open dialog = *.txt.
    Thank your times !

    Hello,
    U can make use of this code:
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR SP_FILE.
      PERFORM SAVE_DIALOG CHANGING SP_FILE G_F_RC.
    FORM SAVE_DIALOG CHANGING PO_FILE PO_RC.
      DATA: L_VA_BOXTITLE     TYPE STRING,
            L_VA_DEFAULTFILE  TYPE STRING,
            L_VA_DEFAULTNAME  TYPE STRING,
            L_VA_DEFAULTPATH  TYPE STRING,
            L_VA_DEFAULTFULL  TYPE STRING,
            L_VA_FILTERTEXT   TYPE STRING,
            L_VA_CODE         TYPE I.
      CLEAR: PO_RC, G_F_CONF.
      L_VA_BOXTITLE   = TEXT-B01.
      L_VA_FILTERTEXT = TEXT-B02.
      IF PO_FILE IS INITIAL.
        CLEAR L_VA_DEFAULTFILE.
      ELSE.
        L_VA_DEFAULTFILE = PO_FILE.
      ENDIF.
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
        EXPORTING
          WINDOW_TITLE            = L_VA_BOXTITLE
          DEFAULT_EXTENSION       = 'TXT'
          DEFAULT_FILE_NAME       = L_VA_DEFAULTFILE
          FILE_FILTER             = L_VA_FILTERTEXT
          INITIAL_DIRECTORY       = 'C:SAPWorkdir'
        CHANGING
          FILENAME                = L_VA_DEFAULTNAME
          PATH                    = L_VA_DEFAULTPATH
          FULLPATH                = L_VA_DEFAULTFULL
          USER_ACTION             = L_VA_CODE
        EXCEPTIONS
          CNTL_ERROR              = 1
          ERROR_NO_GUI            = 2
          OTHERS                  = 3.
      IF SY-SUBRC <> 0.
        PERFORM CHECK_ERRORTYPE(Z48M_MATDATA_UP) CHANGING SY-MSGTY.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        CLEAR PO_FILE.
        EXIT.
      ENDIF.
      IF L_VA_CODE NE 0.
        MESSAGE S818(3F) WITH TEXT-011.
        CLEAR: PO_FILE, PO_RC.
        EXIT.
      ELSE.
        WRITE L_VA_DEFAULTFULL TO PO_FILE.
        G_F_CONF = G_C_XFELD.
      ENDIF.
    ENDFORM.                    " save_dialog
    If useful reward.
    Vasanth

  • Best Video File Type For iTunes and Xbox360

    I have an extensive digital library and I am trying to have one file for all devices.
    What I am looking to do is to have one file that can be managed by iTunes, play on my iPhone and stream to my xbox360 via Connect360 and look good. File size is not a concern. I dont want to do multiple encodes.
    The important features are one file playable by iPhone and Xbox360 via Connect360 that can be managed by iTunes. I would like the video to be of very high visual / audio quality.
    I use handbrake to convert video files.
    My question is, what is the best file type for this scenario? I have used mv4 but more recently I am using MP4 with 264...
    Again, one file to rule them all....
    Thank you in advance!

    Old thread for others, but,,... It isnt necessary to convert a bunch of files, if you have Plex on your pc, and on your iphone/ipad.
    I would have spent a month converting the terra bytes of all the video files that I had but i just airplay and my Plex app to send nearly any type of file on my Imac directly to my Apple tv.
    It converts on the fly any file that isnt supported.

  • Default File Type for New Forms - How to change?

    Hi,
    How can I change propperty: Default File Type for New Forms?
    It is enabled! Do I have to be Administrator to change it? I have SAP ALL..
    SFP -> Layout -> Tools --> Options -> Document Handling
    tnx, Adibo.

    There is no authorisation required for changing the file type. You are saying its enabled, then you can change it.
    Edited by: Nikhil Poojari on Aug 28, 2009 6:50 AM

  • "Problem: Unable to play file type for...". Moderator please help

    When using the spotlfy app from squeeze box I get this message every time: "Problem: Unable to play file type for" then list the song name. I can pick the music and see the art but no play. This is when I am attempting to stream from spotlfy on squeeze box. Logitech customer service told me spotlfy has not been running on squeezebox for weeks. Please help or I'll have to cancel subscription.

    The 3rd party plug-in solved this problem for me, but only after I'd figured out a few other things, so I'm sharing them here: a) You have to have BOTH plug-ins running, both the v 1.0 "official Spotify plug-in "  *and*  the third party plug-in, which is on v2.3.8 as I write this. b) after you have activated the third party plug-in (and re-started the Squuezebox server)  You have to open up the settings for the plug-in ( link in the far right colum)  I don't think it matters how you choose to set these (I didn't mess with them.) The critical thing is that you must log into your Spotify account from within the this plug-in settings screen in order for the 3rd party plug-in to do its job.  (And maybe you'll have to re-start the Squeezebox server yet again.  I just do that without even thinking when trying to sort out these problems.) What makes this all challenging is that the symptoms change at each step:  At first, with just the official plug-in activated, I got the "can't read file format" error message.  After activating the 3rd party plug in (but before logging in from inside it)  Spotify appeared to be working perfectly on the screen of my Squeezbox controller, indicating that a song was playing (even the bright white light  that shows something is streaming was lit.) However. no sound was actually coming through.  After I logged in as above, I finally got music to match all the on-screen indications. No logic to this that I can figure out.  It just seems typical of life with Squeezebox.

  • Unknown File Type for Adobe Classroom in a Book Fireworks

    I am trying to open sand_river1.jpg cited on p. 74 of Adobe Fireworks Classroom in a Book and am getting a "Could not open file" and "unknown file type" despite the fact that the image is displaying as a thumbnail in the file browser.  I get the message on both Windows and Mac Fireworks CS6.  Is it possible these publication assets were not part of Adobe's QA regression?  Anyway:
    - I'd rather not try to fix this myself since it's an Adobe product and I can wait.
    - has this problem been corrected?
    - is there an errata site for the book?  When I search on Google I am just sent to Amazon and bittorrent.
    thanks

    A quick Google search for that file name confirmed the issue here, and a fixed version for chapter 4 can be downloaded at http://www.jimbabbage.ca/_files/ch4files.zip
    Source: http://blogs.adobe.com/edtechatadobe/2012/06/652.html

  • Default file type for photosmart 7525

    I am trying to find the default file type that is saved to a USB drive when scanning on the HP Photosmart 7525.  This is not my printer, I am just trying to help my sister who lives in another city and is not computer literate.  She scanned some pictures (or so she said, after I sent her the instructions from the manual after I downloaded it) to a memory card.  She is not sure what she is looking at from what she is telling me, it appears as the pictures were all saved to one PDF document. Does any one know if PDF is the default file type that scans are saved to on a memory card?  I cannot find the default file type mentioned in the manual.
    Thanks
    David

    Hi,
    You can check from its software on your computer. For documents it's pdf and for photos it's jpg. But you have to select first.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Premiere Elements file type for Elements Organiser

    I use PSE13 organiser ( for pictures and movies) and editor. I recently purchased Premiere Elements 13 and have just edited my first movie.
    I would like to only access Premiere Elements via the Photoshop Elements organiser, but I am unsure what file type to save my Premiere edited files, so that they can be imported and tagged in the Elements organiser, and also played via the elements organiser.
    I only want to run one organiser. Is this possible and what should I be saving my final Premiere files as after editing. ( in the same way that I save a PSD file to a JPG once editing is complete in elements editor.
    Thanks

    kel30
    Your choice of export to conform to the support of the Elements Organizer seems limiting to me. But....
    If I have a 1080p30 Timeline in Premiere Elements 13 Editor project and export it
    Publish+Share
    Computer
    AVCHD
    with Presets = MP4 H.264 1920 x 1080p30
    That file saved to the computer hard drive can be taken into the Elements Organizer 13
    a. displaying a thumbnail with an image from the video
    and
    b. can be played back in the Elements Organizer 13 player.
    I have not gone through all the export choices to sort out which formats will do likewise. But, this particular AVCHD.mp4 (1920 x 1080p30) result is
    as described.
    What is your export choice now and is the end product importing into the Elements Organizer 13, displaying there, and playing back from there?
    ATR

  • File Error: Wrong File Type for Project File

    Just had our 2nd LaCie 2tb hard drive crash. Just completed a project and was about ready to compress it when the drive wouldnt boot up anymore. I tried every program under the sun before eventually sending it off for data recovery.
    $1700 dollars later I have all my files, except one little change.
    My FCP project files are not recognizable by FCP anymore. In the get info box it says they are "Kind: Final Cut Pro Document" The preview picture is a gradient box with exec in the green text in the upper left corner. I tried adding the .fcp extension, but it still wouldn't open it. I keep getting the "File Error: Wrong File Type" when I try opening it with FCP.
    Anything I can do to fix this?
    Thanks

    You might give the following a try...
    1. open the .fcp file with TextEdit
    2. save the file again
    3. open with fcp
    Frank

  • CF9 - best way to restrict file type for uploads??

    Hello, everyone.
    We're using CF9 in both dev and production environments, with little chance of upgrading to CF10 anytime in the near future (it's my understanding CF10 does have a way of detecting a file mimetype that CF9 doesn't have.)
    What is the best way to restrict uploads to specific file types in CF9?  We just need to limit uploads to primary Office (doc(x), ppt(x), xls(x), etc.), PDFs, and gif/jpg (no bmps, pngs, etc.)
    Obviously, just detecting file extension is fruitless.
    Thank you,
    ^_^

    What about just using the accept attribute? That's what it's there for. Just something like:
    <cffile
    action="upload"
    filefield="fileContent"
    accept="application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/gif, application/pdf"
    etc.

Maybe you are looking for