Play 24p file (IshowU file) on a 23.976 project (FCP)

Hi Everyone!
I am having a bit of a hard time with the Software IShowU.
I am trying to make a tutorial with FCP mixing footages of my Canon 7D (in 23.976fps) and footages from IshowU.
It appears that IshowU is not able to provide actual 23.976p but ONLY 24p.
I am therefore forced to mix these 2 formats (23.976 & 24) on my timeline.
What would be the impact of it on my project? audio pitch shifting? video and/or audio playing faster?
Thanks!
Guillaume.

Use Cinema Tools to CONFORM the clip to 23.98... no speed change that you'd notice.
Shane

Similar Messages

  • SWF to play mp3 files located on the server

    Hello,
    Does anyone know if it is possible to create an SWF file that can play mp3 files directly from the server, without the need for a streaming media server or external JS.
    And also for the application to read the current directory its located in and build a playlist based on the files inside.
    any information of examples would be greatly appreciated.
    Peter.

    As for loading and playing the files there is no issue.  Simply load them as you would load any file.  You can even use a relative path if they are in the same folder as the SWF, or a sub-folder that is in the folder with the SWF.
    As for looking at the server directory for what files are there, and using them - I know of no way to do this.  That doesn't mean it is impossible, just that I haven't come across a method in my experience.
    What I typically do is to archive the list of files in an XML file, and load the XML.  I know, that adds an extra step, and an extra file, but it is the easiest method for approximating what you want to do.
    Let me edit this response.
    You could use javascript, or a server language to grab the list of files in the directory and pass it into Flash via the ExternalInterface classes.

  • How to play .wav file from url in iphone.

    We are using callfire API for in our iPhone application(Hybrid application build using sencha and phonegap). The concept of the app is to show the recorded calls in a list and on click of any call in the list it will play the recorded audio file(.wav format). Now the problem is that we are not able to play that file in our Application. We also tried to play that URL directly on iPhone browser but it also didn't worked.
    Here is one of the URL of audio file formathttps://www.callfire.com/cloud/1/files/recording/dynamic/864c81f4a8e6a898042cb47 251ca1c85/2012/8/6065312/cid_1319779221_1.wav
    When we put this audio file in our server and tried to play it our Application, it worked perfectly.
    Can you please tell us what is the reason behind this?
    We are using iPhone 3 with software version 6.0 for testing.

    You'll have to ask the devleopers of sencha and phonegap.

  • Unable to play .wav file from URL.

    We are using callfire API for in our iPhone application(Hybrid application build using sencha and phonegap). The concept of the app is to show the recorded calls in a list and on click of any call in the list it will play the recorded audio file(.wav format). Now the problem is that we are not able to play that file in our Application. We also tried to play that URL directly on iPhone browser but it also didn't worked.
    Here is one of the URL of audio file formathttps://www.callfire.com/cloud/1/files/recording/dynamic/864c81f4a8e6a898042cb47 251ca1c85/2012/8/6065312/cid_1319779221_1.wav
    When we put this audio file in our server and tried to play it our Application, it worked perfectly.
    Can you please tell us what is the reason behind this?
    We are using iPhone 3 with software version 6.0 for testing.

    You need to post this question in the iOS developer's forum.

  • Simple GUI playing mp3 files

    Hi everyone , i am building a simple GUI playing mp3 files in a certain directory.
    A bug or something wrong with the codes listed down here is very confusing me and makes me desperate. Can anyone help me please ?
    import javax.swing.*;
    import javax.media.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.net.*;
    class PlayMP3Thread
    extends Thread
    private URL url;
    String[] filenames ;
    File[] files ;
    boolean condition=true;
    boolean pause=false;
    int count ;
    public PlayMP3Thread() { }
    public PlayMP3Thread(File[] files)
    //try
              this.files = files;
         filenames = new String[files.length];
         count = -1;
         // this.url = mp3.toURL();
         //catch ( MalformedURLException me )
    public void run()
    try
         while (condition)
              count++;
              if (count > (filenames.length - 1)) {
                        count = 0;
              this.url = files[count].toURL();
    MediaLocator ml = new MediaLocator(url);
    final Player player = Manager.createPlayer(ml);
    /*player.addControllerListener(
    new ControllerListener()
    public void controllerUpdate(ControllerEvent event)
    if (event instanceof EndOfMediaEvent)
    player.stop();
    player.close();
    player.realize();
    player.start();
    catch (Exception e)
    e.printStackTrace();
    public void stops()
    //stop the thread
    condition=false;
    pause=false;
    public void pause()
    while(!pause)
    //pause the thread
    try
    wait();
    catch(Exception ex){}
    pause=true;
    public void resumes()
    while(pause)
    notify();
    pause=false;
    } // end of class MP3Thread
    public class mp3Play extends JFrame {
    JTextField direcText ;
    JFileChooser fc;
    static final String
    TITLE="MP3 PLAYER",
    DIRECTORY="Directory : ",
    BROWSE="Browse...",
    START="Start up",
    STOP="Stop",
    PAUSE="Pause",
    RESUME="Resume",
    EXIT="Exit";
    public static void main(String args[])
         PlayMP3Thread play = new PlayMP3Thread();
         mp3Play pl = new mp3Play();
    } // End of main()
    public mp3Play() {
    setTitle(TITLE);
         Container back = getContentPane();
         back.setLayout(new GridLayout(0,1));
         back.add(new JLabel(new ImageIcon("images/hello.gif")));
         fc = new JFileChooser();
         fc.setFileSelectionMode(fc.DIRECTORIES_ONLY);
         JPanel p1 = new JPanel();
         p1.add(new JLabel(DIRECTORY, new ImageIcon("images/directory.gif"), JLabel.CENTER));
    p1.add(direcText = new JTextField(20));
         JButton browseButton = new JButton(BROWSE, new ImageIcon("images/browse.gif"));
         browseButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    int returnVal = fc.showOpenDialog(mp3Play.this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
              direcText.setText(fc.getSelectedFile().toString());
              File[] files = (new File(direcText.getText())).listFiles(this);
         p1.add(browseButton);
         back.add(p1);
         JPanel p2 = new JPanel();
              JPanel butPanel = new JPanel();
              butPanel.setBorder(BorderFactory.createLineBorder(Color.black));
              JButton startButton = new JButton(START, new ImageIcon("images/start.gif"));
              startButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
                        PlayMP3Thread play = new PlayMP3Thread(files);
                        play.start();
         butPanel.add(startButton);
         p2.add(butPanel);
         JButton stopButton = new JButton(STOP, new ImageIcon("images/stop.gif"));
         stopButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
              play.stops();
         p2.add(stopButton);
         JButton pauseButton = new JButton(PAUSE, new ImageIcon("images/pause.gif"));
         pauseButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
              play.pause();
         p2.add(pausetButton);
         JButton resumeButton = new JButton(RESUME, new ImageIcon("images/resume.gif"));
              resumeButton.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e) {
                   play.resumes();
         p2.add(resumeButton);
         back.add(p2);
    JButton exitButton = new JButton(EXIT, new ImageIcon("images/exit.gif"));
              exitButton.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e) {
                   System.exit(0);
              p2.add(exitButton);
              back.add(p2);
              addWindowListener(new WindowAdapter() {
         public void windowClosing(WindowEvent e) {
         System.exit(0);
              pack();
         setVisible(true);
    }

    Actually I don't know much about fixing technical error or logical error.
    When it compiled , there are 6 errors showed up :
    can't resolve symbol : method listFiles (<anonymous java.awt.event.ActionListener>)
    location: class java.io.File
              File[] files = (new File(direcText.getText())).listFiles(this);
    can't resolve symbol: variable files
                        PlayMP3Thread play = new PlayMP3Thread(files);
    can't resolve symbol: variable play
              play.stops();
    can't resolve symbol: variable play
              play.pause();
    ^
    can't resolve symbol : variable pausetButton
    location: class mp3Play
         p2.add(pausetButton);
    ^
    can't resolve symbol: variable play
                   play.resumes();
    Any suggestions ?

  • ITunes takes a few seconds to start playing MP3 files

    I just started using this new MacBook Pro and transfered my music library to the new laptop. I'm having a problem with iTunes playing MP3 files: when I double click on a MP3 track iTunes seems to freeze for like 3 - 4 seconds before the track starts playing and then it plays normally without a hitch. This is happening with each and every MP3 track that I have in the library as well as new MP3 tracks that I'm adding. Th short delay/freeze also occurs when I try to view or alter the info of an MP3 track in the library, so that when I right click on a track and click Get Info, the 'Get Info' screen will take about 3 - 4 seconds to show up and the same freeze happens when I click OK to close the 'Get Info' screen.
    Note that this happens only with MP3 tracks. Tracks purchased from the iTunes store (AAC) do not have this problem and start playing without any delay/freeze.
    Another weird tidbit: When MP3 tracks are in the same playlist (or album) and I let them play one after another (without me skipping to the next/previous song) then the delay/freeze does not occur at all. This delay seems to just happen when I start playing a song or when I click the fast forward/Rewind buttons to skip to the next/previous track.
    Does anyone know what might be causing this? And if a fix is available somewhere? Thanks in advance!

    It only happens on mp3s not on AAC's to me too! Just so you all know. I thought an EXTERNAL DRIVE was my problem but after hours of research I found it's probably an intentional bug (just kidding Apple you don't hate other companies that much....geesh! ) It might not be this...but you never know.
    I thought maybe it was the TAG but it seems this has nothing to do with it. Point is either Apple left a bug on the last update of itunes MP3s because to them it's less of a priority or it's being messed up by Amazon folders (still looking in to), or maybe there was a problem with the install.
    So far my options are to get an MP3 to AAC convertor and dump my 3000 songs into a program for converting, wait for an update, reinstall, or keep looking for a missed solution.
    Any help would be appreciated!!
    [email protected]

  • I am using Firefox 3.6.13 and have installed Windows Media Player 1.0.0.8 for Firefox. However, if I attempt to open a file with a .wmv extension it appears to function properly, except, that I cannot "play" the file. What am I doing wrong?

    # Question
    I am using Firefox 3.6.13 and have installed Windows Media Player 1.0.0.8 for Firefox. However, if I attempt to open a file with a .wmv extension it appears to function properly, except, that I cannot "play" the file. What am I doing wrong?

    You probably have not seen anyone reporting the exact same problem as you. All three crash reports have the same crash signature and as currently ranked 67 it is not the commonest of reasons for a crash.
    I hope you enter your email contact information when reporting crashes. I note you see this crash when using videos, others may possibly see this crash in other circumstances.
    You have already tried the obvious, attempts at a fix so it is now down to wait and see, maybe developers working on the bug will report something or fix it.
    Did you try my suggestion of installing portable ESR ?
    For forum cross referencing purposes
    * Crash Reports for Crash IDs <br />bp-71697f5d-41d4-48ae-9db9-3e6302130607<br /> bp-6e1347bc-153f-433a-9c35-a5f022130607<br /> bp-92a533a2-9e09-4c1e-8df7-deb4c2130607
    *(all three) Crash Signature: EnumSoftwareMFTs(_GUID const&, unsigned int, __MIDL___MIDL_itf_mfobjects_0000_0006_0003 const*, __MIDL___MIDL_itf_mfobjects_0000_0006_0003 const*, IMFActivate***, unsigned int*)
    * Related bug 858667 NEW crash in mozilla::wmf::MFTEnumEx @ EnumSoftwareMFTs
    *I note this was first seen in Fx21 and is 100% Windows 7
    <br />

  • I dragged my ext. HD iTunes backed up folder into my new mac. Now there are duplicates of every song!! The problem is both versions seem to actually BE there when I check the info. Now I have no idea if iTunes is playing the files in the trash or not

    Hi. I'm in a situation here and would really welcome some guidance. I dragged my ext. HD iTunes backed up folder into my new mac. Now there are duplicates of every song. Both versions seem to actually BE there when I check the info. So, I moved what I thought were duplicates into the trash from iTunes, and resigned myself to the fact that I would have to do this manually for each album. I did this with about 10 albums. I emptied the trash and lost them even though they still LOOKED like they were in iTunes. I repeated the process tonight on a bunch of other albums not realizing yet that I had screwed up terribly the first time. This time I saw what had happened and pulled the files out of the trash, onto my desktop and dragged them back into iTunes, then deleted the duplicate files that had exclamation points next to them. Now I have no idea if iTunes is playing duplicate files from the trash or not, and am nervous about emptying the trash. Anyone dealt with this before? Thank you

    Hi. I'm in a situation here and would really welcome some guidance. I dragged my ext. HD iTunes backed up folder into my new mac. Now there are duplicates of every song. Both versions seem to actually BE there when I check the info. So, I moved what I thought were duplicates into the trash from iTunes, and resigned myself to the fact that I would have to do this manually for each album. I did this with about 10 albums. I emptied the trash and lost them even though they still LOOKED like they were in iTunes. I repeated the process tonight on a bunch of other albums not realizing yet that I had screwed up terribly the first time. This time I saw what had happened and pulled the files out of the trash, onto my desktop and dragged them back into iTunes, then deleted the duplicate files that had exclamation points next to them. Now I have no idea if iTunes is playing duplicate files from the trash or not, and am nervous about emptying the trash. Anyone dealt with this before? Thank you

  • Flash CS5 unable to play .FLV files on Macbook Pro

    I have a colleague who is trying to put together a Flash package for me  on her macbook pro.  It needs to play an flv file. She is unable to play  flv files on her computer either in Flash or using the Adobe Media  Player. I have no problem playing the same files on my macbook pro,  we're both running the latest OS and have version 1.8 of Adobe Media  Player.
    She went to the Adobe site to download the latest version of Adobe  Media Player, hoping that might include whatever component is missing on  her system. Because of Adobe's decision not to distribute AMP that  didn't help.  She has Flash Professional CS5 11.0.2 on her system.  When  she imports an flv video into a Flash project and tries to play it she  gets an error message saying it can't stream the video. Note that the  video is on her hard drive, it is NOT on the internet so no streaming  should be required.
    The actual error message is: "the video player is in the connection  error state. It enters this state when a video stream attempted to load  but was unsuccessful. There are two possible reasons for the error: no  connection to the server or the stream was not found."
    Since it's a file on her hard drive, and she has loaded the file  into the Adobe development environment successfully, the one thing we  know for certain is that neither of these reasons is correct. Something  is obviously missing on her system, what is it and what can we do to fix  it?

    I'm getting error too (Error #2044: Unhandled NetStatusEvent:. level=error, code=NetStream.Play.StreamNotFound). I'm getting this with CS5. This file was previously made in CS4 and never got this error.
    Everything (fla and flv too) is on external hard disk.
    As this work requires to be exported to mov, I've found out that everything needs to be on the mac (don't know for pc), like on desktop.
    So, let me wrap up disadvantages I got with Flash CS5:
    - TextField.embedFont makes the font disappear in CS5, so I can't use it, so I can't "play" with text in a comfortable way (in CS4, with embedFont = true, I was able to rotate and stuff). Now I have to make a bitmap out of it. It means 3 lines of code and a new variable, instead of just an easy one.
    - I have to rebuild my entire source path structure for AS classes, as my old one (that took me years of effort to be reasonable and used to work just fine in CS4).
    - I have to move stuff from my hard drive to the desktop, to make flv be played and to make a mov out of my animation.
    CS5 is making my job harder and making me lose a lot of time to find out errors that have no good reason to exist (it was not error. just "place CS5 doesn't like").

  • How can I play DV4 files from my CCTV backup on my mac?

    Can any one tell me if there is any freeware that can play DV4 files from my CCTV?

    VLC may be able to: http://www.videolan.org/vlc/features.php?cat=video

  • How can I play .caf files on Windows desktop computer

    I have a voice/sound recording program called Recorder Pro on my iPhone5.   It generates .caf files, which can be transferred to my desktop computer while the phone is connected, using iTunes/Apps (where the bottom left panel upon scrolling down has two apps, Recorder pro and Garage Band, and on selecting Recorder Pro, the .caf files are listed in the bottom right panel, from where they may be copied. 
    However, none of the software on my desktop would play the .caf files, so following the solution in another post
    https://discussions.apple.com/message/22299971#22299971
    I downloaded Audacity 2.0.5. 
    Now, to complicate the issue, I have had two versions of Recorder Pro on my iPhone.  The first version (let's call it V1) had an icon with a big oval mid-gray microphone. It was (as far as I can remember) free of charge.  It seemed to have a constraint of 3 min recording time, so I replaced with a second version (V4.1.2) purchased for about $2.  "V4.1.2" has an icon with a red sphere on a black background. 
    Both versions produced .caf files, but Audacity will only read the three files I recorded with V1 (6 to 15 MB).  The two files I recorded with V4.1.2 (3-10 MB) will not play.  (Import RAW in Audacity does not work either.)
    I am not sure what the relationship is between the Recorder Pro programs, as they bear no resemblance in design. They both originated from DAVA Consulting. The first one was I believe from here:
    https://itunes.apple.com/us/app/recorder-pro/id503031635?mt=8
    and the second one says it is 4.1.2.
    (A further complication - which could conceivably be relevant - is that V1 appeared in the bottom left of iTunes but the files did not show in the right panel, and I had great difficulty downloading those 3 files - in fact I cannot understand how they ended up copied to my desktop,  since the procedure that was supposed to work was impossible due to the non-appearance of the .caf files in that panel!   Then, when I did find them on my desktop, the files were truncated at less than 4 minutes .... which was the reason for purchasing V4.1.2.  The question then occurs:  is it critically important to download those caf files from your phone in a particular way?)

    Have you tried Vox? https://itunes.apple.com/jp/app/vox/id461369673?l=en&mt=12
    It plays FLAC files (and just about anything else) - though not in iTunes. No need to convert anything.

  • I am trying to save a mp3 file but firefox does not allow me to save it...it allows me to play the file but not download and asave it to my computer. How do I enable it to save mp3 files on my computer?

    I am trying to save a mp3 file but firefox does not allow me to save it...it allows me to play the file but not download and asave it to my computer. How do I enable Firefox to save mp3 files on my computer?

    Go to Options>Applications tab > search MPEG Layer 3 audio(audio/mpeg) > use "Save File" option on drop down menu.

  • Quicktime only play one file at a time

    I would like to use QuickTime player to play mp3s. when I play a file and then open another it opens another instance of Quicktime and both files play at the same time.
    Is there a terminal command to only have one instance of quicktime at a time?

    Is there a terminal command to only have one instance of quicktime at a time?
    Not a big Terminal user, but as far as I know, the answer would be "No!" Nor does the QT Player (QT X) have any preferences that would help here.
    I would like to use QuickTime player to play mp3s. when I play a file and then open another it opens another instance of Quicktime and both files play at the same time.
    With the QT Player (QT X) the specified media player, you have three basic options:
    Create a reference playlist or pseudo-playlist,
    Create a standalone "album" file, or
    Create a an Automator script that will play any group of folders and/or individual files dropped to it.
    For instance, if you have QT 7 install on your system and is is keyed for "Pro" use, then you can use it to create a "reference" (pseudo-playlist) or "standalone" (album" file that will play the content you add in the order you add it to the player. The "reference" file is very small since it only tells the QT Player to play the source files located else where on your system but is not, generally speaking, "transportable" since files are easily "orphaned" by inexperienced users. On the other hand, the "standalone" contains all of the original data stored internally and can be move or shared across systems and media devices having compatible media players. Both types of files are fixed with respect to both the content and its playback order.
    An automator "drop" script works like the playlist or pseudo-playlist file described above but has the advantage of allowing the user to grab and combination of files and/or folders and play them sequentially in the order (I believe) in the order they are selected. Its major disadvantage is that the user must select, drag, and drop the set of files and/or folders each time he or she wishes to play the content whereas playlists, "pseudo-playlists," and "albums" play the same files in the same order each time they are opened.
    Most users prefer an alternative solution—that of using an alternative player. Most use iTunes since it also "manages" the media content. Music albums are, in and of themselves, playlists. However, users can also create smart or manual custom playlists as desired. These playlists are "reference" playlists by nature but can be exported, burned, streamed, or sync'd to mobile devices if desired by the user and thus, to my mind, offers the most available options to the average user.
    Another alternative would be to use a third-party media player having "playlist" capabilities. One popular example would be the VLC media player. Folders, files, albums, etc. can be dropped to the app player window and automatically begin playing in the order dropped. Further, the playlist can be saved as an M3U playlist file that can be recalled by VLC (or iTunes) later if desired. Unfortunately these M3U files are not QT X or QT 7 compatible. (NOTE: The M3U file, like the QT 7 "reference" file mentioned above, merely contains pointers to data stored elsewhere on your system and any change to the relative navigation path can orphan the resource data.)

  • Error while playing sound file in Applet

    Hi!!
    I am trying to play sound file in the applet which produces sound continuously, when it goes above certain set value. When i run the sound file individually it runs perfectly fine but when i try to call that class in diff. program its giving me some security error..i am trying to solve this problem from last so many days..i dont know whether i have to make some change in Security file policy or java policy..the error is like..
    java.security.AccessControlException: access denied (java.util.PropertyPermissio
    n user.dir read)
    at java.security.AccessControlContext.checkPermission(AccessControlConte
    xt.java:269)
    at java.security.AccessController.checkPermission(AccessController.java:
    401)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:524)
    at java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:12
    76)
    at java.lang.System.getProperty(System.java:573)
    at SoundApplication.startLoadingSounds(SoundApplication.java:52)
    at SoundApplication.<init>(SoundApplication.java:42)
    at TempSet.actionPerformed(TempSet.java:103)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:17
    86)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
    ctButton.java:1839)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
    istener.java:245)
    at java.awt.Component.processMouseEvent(Component.java:5100)
    at java.awt.Component.processEvent(Component.java:4897)
    at java.awt.Container.processEvent(Container.java:1569)
    at java.awt.Component.dispatchEventImpl(Component.java:3615)
    at java.awt.Container.dispatchEventImpl(Container.java:1627)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
    at java.awt.Container.dispatchEventImpl(Container.java:1613)
    at java.awt.Window.dispatchEventImpl(Window.java:1606)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Please suggest some solution for this..its kinda urgent..
    Thanks in advance.
    Regards,
    Amish

    Are you loading your Applet from a webserver? You could make the sound file available through the same webserver.
    Alternatively, you could package the sound with the code in a JAR. It does mean a bigger download for your Applet users though, but the Applet would be able to access the file quickly.
    If you put your file in the JAR, say in /sound/myfile.ext , then you can get access to it from your code like this:
    URL soundURL = getClass().getResource( " /sound/myfile.ext" );

  • Playing FLAC files in iTunes with Windows 7 OS.....is it possible?

    Are there any apps or hacks that anyone is aware of that will allow me to play FLAC files in iTunes?
    I do not want to convert my FLAC files to another format to use - it would be too difficult to synchronise the tags and song ratings from the mp3 files (or whatever formats itunes supports) back to my ''archived' FLAC files.
    Yet I really enjoy iTunes' playlist functions - no other players compare. I am hoping to have the best of both worlds: FLAC and iTunes cataloguing features. A search through the web and these forums makes me think it is not possible.
    Any links or suggestions? Or do I need to choose between FLAC and ITunes for realsies?

    Firstly, playing Flac in iTunes is an altogether different animal than playing them on your iOS device and is something you never asked about. For that you'll need to Google "Fluke FLAC" if you're still running Lion or older. If you're running a newer Mac OS I haven't yet heard of a solution for playing FLAC in iTunes and you'll have to resort to a third party app like Vox.
    For most FLAC playing iOS apps you'll add your music files via the "file sharing" section at the bottom of your Apps tab in iTunes when your iPod touch is plugged in. 
    As for Flac Player specifically the high price coupled with some reported problems I heard when looking into it had me steering clear so I can't offer first hand reports on THAT program.
    Since it sounds like you've been longing to play FLAC on your iPod touch for quite some time I was simply offering a bevvy of options to do just that I know of, including some free ones. 
    Hopefully someone will stumble across this thread and chime in with feedback about THAT app specifically for you.

Maybe you are looking for

  • Upgrade to 4.0 - asking for 'follow-up activities for middleware'?!??!!

    HI, My upgrade from 3.1 to 4.0 has been going smoothly up to now. It stopped in phase REQ_BBWPCRM now asking me to perform the actions in the chapter 'Follow-up activities for the Middleware' in the documentation 'Upgrade Guide - CRM 5.0'. No mention

  • Invalid Language Code Error while Migrating

    Im using migration tool...while pasting im getting this kind of error. Anyone know what this means? SEVERE: <?xml version = '1.0' encoding = 'UTF-8'?> <env:Fault xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:env="http://schemas.xmlsoap.

  • Turning off monitor detection?

    Is there a way to turn of monitor auto-detection. I am using a kvm and have the a monitor hooked up as primary desktop on external dvi connector. Using iMac display as secondary monitor. Every time I use kvm to switch to another monitor the resolutio

  • Changes in iPhoto 09 searching

    I have 8000+ photos in my library, many of them scanned from the predigital days. I hope I have my terminology correct, but I have added information for each photo in the DESCRIPTION? area, (the box in the lower left part of the window which toggles

  • Why does my phone disconnect after 4 hours of call time

    why does my phone disconnect after 4 hours of call time? Is there anyway I can change this?