Moving files into different folders on the ipod ?

Hi all,
A lot of my movie files are in the wrong place on my ipod - e.g some of my video podcasts are in my songs folder.
Is there anyway I can move the video files on my ipod into the correct place ?
Many thanks in advance,
Martin

Hi,
They are only showing up in songs.
Also for some reason all my video files are now played as audio files
Can anybody help with this at all ?
Thanks,
Martin

Similar Messages

  • Saving jpeg and html file into different folders

    Hi, all.
    I developed a VI that generates, on a timely basis, reports (HTML format) that contain some text, numerical values and graph images (jpeg). The problem is that when it saves a HTML file to a folder, JPEG files are also saved into the same folder.
    Is there any way I can save these html and jpeg into different folders?
    Or is it even possible to generate html report with some graph images without having to have save jpeg files? (this would be even better).
    I included a screen shot of the VI.
    Thanks in advance for your help.
    Attachments:
    screen shot.doc ‏184 KB

    There is currently no way, with the Report Generation VIs, to save the image files for an HTML report to a separate folder.  If you think this would be a helpful feature, please submit your request to the Product Suggestion Center, and we will look into possibly including this feature in a future release.  For now, the only workaround I can think of would be for you to use the File I/O VIs to manually create another folder and move the image files to it, then use the string manipulation functions to edit the contents of the HTML file to point all image file references to the new location.
    As for not generating images, I don't know of an easy way to have an HTML page with images where there are not corresponding image files.
    Good luck,
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • Questions re moving files into Events folders

    If you move files into an FCP X Events folder, when you open FCP X will it recognize the new files?
    Or must FCP X import files into Events folder to recognize and use them?

    Great, thanks Tom.
    there are two situations where I am now 1st going to other folders, then importinging into an FCP X Events folder. This costs me drive space (duplicate files) and time (for importing):
    (1) Using Clip Wrap to convert AVCHD files from Sony FS100 cameras to Pro Res 422
    (2) Round-tripping from FCP X to DaVinci Resolve, then rendering the graded media files.

  • Moving files into new folders (help needed)

    Hi it would be grate if some one could help me....
    in/with my program i need to move a file (mp3) from one folder into a new folder???

    ...i was and i also tried with out it...here is my code (for both classes!)
    it does not have the returnTo()...i took it out...this is working...but the mp3 files need to be moved into the files that have been created or already exist...
    import java.io.File;
    import cs1.Keyboard;
    public class DirectoryList  {
    /* This program lists the files in a directory specified by
        the user.  The user is asked to type in a directory name.
        If the name entered by the user is not a directory, a
        message is printed and the program ends.
    static String directoryName;  // Directory name entered by the user.
    static File directory;        // File object referring to the directory.
    static String[] files;        // Array of file names in the directory.
        String[] arguments;
    public static void main(String[] args) {
        System.out.print("Enter a directory name: ");
        directoryName = Keyboard.readString().trim();
        directory = new File(directoryName);
        if (directory.isDirectory() == false) {
            if (directory.exists() == false)
               System.out.print("There is no such directory!");
            else
               System.out.print("That file is not a directory.");
        else {
            files = directory.list();
            System.out.println("Files in directory \"" + directory + "\":");
            for (int i = 0; i < files.length; i++)
                System.out.println("   " + files);
    } // end main()
    import java.io.*;
    public class ReadID3
        static String artist;
        static int index = 0;
        public static void main(String[] arguments)
            DirectoryList.main(arguments);
            if (DirectoryList.directory.exists() == true)
            for(int index = 0; index < DirectoryList.files.length; index++)
                try
                    File song = new File(DirectoryList.directoryName + File.separator + DirectoryList.files[index]);
                    FileInputStream file = new FileInputStream(song);
                    int size = (int)song.length();
                    file.skip(size - 128);
                    byte[] last128 = new byte[128];
                    file.read(last128);
                    String id3 = new String(last128);
                    String tag = id3.substring(0, 3);
                        if (tag.equals("TAG"))
                            System.out.println("\nTitle: " + id3.substring(3, 32));
                            System.out.println("Artist: " + id3.substring(33, 62));
                            System.out.println("Album: " + id3.substring(63, 91));
                            System.out.println("Year: " + id3.substring(93, 97));
                            artist = id3.substring(33, 62);
                            createFiles();
                                File newLocation = new File( DirectoryList.directoryName + File.separator + artist);
                                System.out.println("'song' exists? "+song.exists());
                                System.out.println("'newLocation' already exists? "+newLocation.exists());
                                System.out.println("Renaming succeeded? "+song.renameTo(newLocation));
                        else
                            System.out.println(arguments[0] + " does not contain"
                            + " ID3 info."); 
                            file.close();
                catch (Exception e)
                    System.out.println("Error � " + e.toString());
        public static void createFiles()
                File f = new File(DirectoryList.directoryName + File.separator + artist);
                f.mkdir();

  • Regarding moving files b/w folders in the Application server

    Hi,
    I need to move the file from one folder(main folder) of the application server to another (eg, archive, error) with certain conditions. When I try to move file from main folder to archive folder, it is working fine (.txt). The file along with the contents are moving, but when I try to move the file from main folder to error folder (.err), though the file has moved, the contents are not showing (though the file is erased from the main folder). I have used the function module
    SXPG_COMMAND_EXECUTE for performing these actions.  Can any one suggest as to why the contents are not showing.
    LEAR:  lv_mv_command_exitcode,
              lv_mv_command_arguments,
              lv_dummy_string.
      CONCATENATE is_dir_list-fullname iv_error_file INTO lv_mv_command_arguments
      SEPARATED BY space.
      REFRESH lt_mv_command_stdout.
      CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
        EXPORTING
          commandname                   = 'ZMV'
          additional_parameters         = lv_mv_command_arguments
        IMPORTING
          exitcode                      = lv_mv_command_exitcode
        TABLES
          exec_protocol                 = lt_mv_command_stdout
        EXCEPTIONS
          no_permission                 = 1
          command_not_found             = 2
          parameters_too_long           = 3
          security_risk                 = 4
          wrong_check_call_interface    = 5
          program_start_error           = 6
          program_termination_error     = 7
          x_error                       = 8
          parameter_expected            = 9
          too_many_parameters           = 10
          illegal_command               = 11
          wrong_asynchronous_parameters = 12
          cant_enq_tbtco_entry          = 13
          jobcount_generation_error     = 14
          OTHERS                        = 15.
      IF sy-subrc <> 0 OR lv_mv_command_exitcode <> 0.
        CONCATENATE 'Error in File'
                    iv_basefile
                    'but,not moved to Error folder.'
        INTO lv_dummy_string SEPARATED BY space.
        WRITE: / lv_dummy_string.
        IF sy-batch = c_flag_on.
          MESSAGE e054 WITH iv_basefile.
        ENDIF.
      ELSE.
        CONCATENATE 'Error in File,'
                    iv_basefile
                    'moved to Error folder.'
        INTO lv_dummy_string SEPARATED BY space.
        WRITE: / lv_dummy_string.
        IF sy-batch = c_flag_on.
          MESSAGE s055 WITH iv_basefile.
        ENDIF.
    Regards,
    John

    Hi,
    Here what I found was, if the file is empty, then the system is not moving the empty file to the destination , but if the file is not empty it is copying the contents and the corresponding folder to the destination folder. My intent is to copy the folder even if the contents of the folder is empty to the destination folder and delete the old file.
    regards,
    John

  • Separating songs on the same album into different sections of the ipod

    i dont know what is wrong. but sometimes when i add songs onto my ipod, it'll separate the songs. for example, if i have a 13 track cd and download in onto my ipod, it'll put tracks 1-7 separate from the rest. im so confused and i dont know whats wrong with it...

    All songs need to have ALbum Artist filled in or not.
    If only one/some have it, it messes it up.

  • Drop the files into different directories based on the filename

    Hi,
    I had a reqiuirement based on the file name, i should drop the files in to different directories.
    I can get the filename through variable substitution in receiver file communication channel, now i want to drop the file into different folders based on conditions.
    suppose, if the file name is DDDX234
    i should do substring of filename0+(4), if the value is L then i should drop in X directory
    suppose, if the file name is DDDY234
    i should do substring of filename0+(4), if the value is L then i should drop in Y directory.
    How can i drop the file into differnent directories based on filename.
    Thanks
    Srinivas

    Thanks Michal,
    I mapped the directory and filename to the target header in the mapping
    Filename --> UDF --> Header(target)
    and in the receiver channel checked the ASMA and given * in the filename and directory name.
    But in runtime iam getting the error as
    Attempt to process file failed with com.sap.aii.adapter.file.configuration.DynamicConfigurationException: The Adapter Message Property 'FileName' was configured as mandatory element, but there is no 'DynamicConfiguration' element in the XI Message header
    MY UDF is
    public String Directory(String a,Container container){
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key  = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/File", "FileName");
    DynamicConfigurationKey key1 = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/File", "Directory");
    String FileName = conf.get(key);
    FileName = a;
    conf.put(key, FileName);
    %%%based on filename the directory should change
    String Directory = conf.get(key1);
    Directory = "/SAPInterface/XI/PPD/DHX/out";
    conf.put(key1, Directory);
    return "";
    Help me in correcting this error.
    Thanks
    Srinivas

  • Applescript moving different files to different folders

    I have 377 files I need to move into 377 different folders. The files have a name like "JustAKid_Basketball-10up 2.pdf" where only the number on the end changes. The folders are named for cities with a number on the front. i.e. "374.SHALLOTTE" I'm trying to build a script that can read the file name and match number to number and then move the file into the matching folder. "JustAKid_Basketball-10up 2.pdf" would go into "2.NASHVILLE." Does that make sense? Any help would be greatly appreciated.

    IF window 1 contained just exactly 377 folders and 377 files, AND IF all your files really had the same name (except for the number at the end), for example "JustAKid_Basketball-10up 1.pdf", "JustAKid_Basketball-10up 2.pdf", …, "JustAKid_Basketball-10up 376.pdf", "JustAKid_Basketball-10up 377.pdf", THEN you could try the following script:
    tell application "Finder"
          set k to 377
          repeat until k = 0
                move file k of window 1 to folder k of window 1
                set k to k - 1
          end repeat
    end tell

  • Software Update stuck: "Moving files into place"

    Software Update stuck. In OS C Lion (10.7.4) I ran Software Update on 25-Jul-2012 (The day when OS X Mountain Lion was released). Software Update had 5 updates, such as Safari 6.0, Remote Desktop, iPhoto (?). Software update gets about 95% done, based on the progress bar. Then it hangs... for hours. I finally had to force-Quit Software Update. Rebooted. Tried again. Same problem. Rebooted and rest the PRAM (command-option-P-R) at start-up. Ran Software Update and had the same problem. Software Update hangs while "Moving files into place." Has anyone else seen this problem and know how to get it to work?

    I discovered that if I selected only one update at a time to install, all but one installed (i.e., Remote Desktop, Safari 6, and iWork update). The one update that did not install was the iPhoto update. I had left the install to run overnight (about 7 hours). Console log for /var/log/install.log when installing iPhoto update follows:
    Jul 25 21:39:25 mymac installd[2768]: PackageKit: Extracting file://localhost/Library/Updates/041-5716/iPhoto9.3.2Update.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
    Jul 25 21:40:09 mymac installd[2768]: PackageKit: Extracting file://localhost/Library/Updates/041-5716/iPhoto9.3.2ContentUpdate.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root, uid=0)
    Jul 25 21:40:15 mymac installd[2768]: PackageKit: Executing script "preinstall" in /private/tmp/PKInstallSandbox.cAwBIw/Scripts/com.apple.pkg.iPhoto9.3.2Update.fK Mu0v
    Jul 25 21:40:16 mymac _spotlight[4876]: Running Install Scripts . . .
    Jul 25 21:40:16 mymac _spotlight[4878]: Begin script: AlertAll.sh
    Jul 25 21:40:17 mymac installd[2768]: preinstall: 2012-07-25 21:40:17.123 AlertAll[4880:707] Looking for applications at
    Jul 25 21:40:17 mymac installd[2768]: preinstall: 2012-07-25 21:40:17.178 AlertAll[4880:707] --(null)
    Jul 25 21:40:17 mymac installd[2768]: preinstall: 2012-07-25 21:40:17.188 AlertAll[4880:707] img:1
    Jul 25 21:40:17 mymac installd[2768]: preinstall: 2012-07-25 21:40:17.196 AlertAll[4880:707] >> timerMethod
    Jul 25 21:40:17 mymac installd[2768]: preinstall: 2012-07-25 21:40:17.197 AlertAll[4880:707] >> updateTable
    Jul 25 21:40:18 mymac installd[2768]: preinstall: 2012-07-25 21:40:18.354 AlertAll[4880:707] >> applicationShouldTerminate
    Jul 25 21:40:19 mymac installd[2768]: preinstall: 2012-07-25 21:40:19.385 AlertAll[4880:707] >> applicationWillTerminate
    Jul 25 21:40:19 mymac _spotlight[4888]: End script: AlertAll.sh
    Jul 25 21:40:19 mymac _spotlight[4889]: Begin script: deleteObsolete
    Jul 25 21:40:19 mymac _spotlight[4893]: End script: deleteObsolete
    Jul 25 21:40:19 mymac _spotlight[4894]: 2 Install Scripts run.
    Jul 25 21:40:19 mymac installd[2768]: PackageKit: Shoving /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/Cleanup At Startup/PKInstallSandbox-tmp/Root (2 items) to /

  • file was not copied to the iPod because it cannot be played on this iPod

    Hi,
       I'm a complete newb with the first generation iPod Touch. It's my wife's and I don't use it but I wanted to experiement with giving her access to some movies. As an experiment I've encoded 1 chapter of a movie on my Linux box using Handbrake using the iPhone & iPod Touch preset. The file is about 7MB. It plays fine on the Linux box. I've copied it over to my Windows machine, have my wife's iPod Touch hooked up and it's visible in iTunes. I select the video directory for the iPod in iTunes and then try dragging the video file into iTunes. At this point I'm presented the message:
    <file> was not copied to the iPod <iPod name> because it cannot be played on this iPod.
       In searching the forums it seems that one potential solution is to choose Advanced->Create iPod or iPhone version which unfortunately is grayed out an unselectable. I suspect that this is because I don't have the video file inside of iTunes, but I'm not sure about that.
       When I choose Library->Movies I just get a few options about renting and downloading that take me to the iTunes store.
       How do I get this video into iTunes so that I can try to get it onto the iPod?
    Thanks,
    Mark

    As a follow-up I talked to my son who has an iPod and he tells me that, assuming I understood him correctly, when I open iTunes and choose Library->Movies I should see something like a file browser, and that when I drag the video from my desktop into iTunes I should see it there in the browser.
    I currently am not seeing anything that looks like a file browser, but something more like an adversitisement for capabilities of iTunes and the iTunes store. I've got a green shopping bag that has some text to the right saying 'Download movies' and to the right of that some green tickets to the right with text that says 'Rent movies'.
    I understand that I want to use the iTunes converter in the advanced menu, but I haven't figured out how to use that on a random file like the m4v file on my desktop.
    Thanks

  • Streaming files with different folders

    Hi
    i am new to FMS4 and i am having a problem playing some files with different folders.
    i have different folders in C:\media3\feeds
    in that directory i have folder "1", "2" and "3"
    other words C:\media3\feeds\1
    C:\media3\feeds\2
    C:\media3\feeds\3
    in config folder i changed fms.ini
    VOD_DIR = C:\media3\feeds\
    and
    VOD_COMMON_DIR = C:\media3\feeds\
    i only got the f4v files to work in C:\media3\feeds\ which link is rtmp://localhost/vod/mp4:testfile.f4v
    so i tired to have some folders in C:\media3\feeds\ like mention above
    i tried to put <Streams>/;<C:\media3\feeds\1</Streams> in Applications.xml file in the C:\Program Files\Adobe\Flash Media Server 4\applications\vod
    and used rtmp://localhost/vod/1/mp4:testfile.f4v
    here is piece of the App file
    <Application>
    <StreamManager>
    <VirtualDirectory>
          <!-- Specifies application specific virtual directory mapping for recorded streams.   -->
    <Streams>/;${VOD_COMMON_DIR}</Streams>
    <Streams>/;${VOD_DIR}</Streams>
    <Streams>/;<C:\media3\feeds\1</Streams>
    <Streams>/;<C:\media3\feeds\2</Streams>
    </VirtualDirectory>
    nothing worked
    can some one help me with this??

    If you are using
    VOD_DIR = C:\media3\feeds\ or VOD_COMMON_DIR = C:\media3\feeds\
    and having files in folder "1" which is under "C:\media3\feeds\"
    then you URI should be rtmp://localhost/vod/mp4:1/testfile.f4v (where testfile.f4v is present under C:\media3\feeds\1)
    If you are using
    <Streams>/;C:\media3\feeds\1</Streams>
    <Streams>/;C:\media3\feeds\2</Streams>
    Then your URI should be rtmp://localhost/vod/mp4:testfile.f4v  (where testfile.f4v is present under C:\media3\feeds\1 or C:\media3\feeds\2)
    Also please note in your configuration which you have specified
    <Streams>/;<C:\media3\feeds\1</Streams><Streams>/;<C:\media3\feeds\2</Streams>
     please remove "<" in "<C:\media3\feeds\1" and "<C:\media3\feeds\2"

  • REG: 4 different folders from the source side and we need to have the BPM t

    Hi All,
    We are using a BPM for file-idoc scenario. Previously we use to have one source folder which sends file and the bpm worked fine. Now we have a requirement where the files come from 4 different folders from the source side and we need to have the BPM to run independently for each folder.
    What are the changes to be made in IR and id for this..
    Thanks & Regards,
    Kiran.

    File adapter has a option advance selection of source file setting which can be used for picking files from different folder.

  • Cut vedio file into different frames using java

    Hi friends,
    I would like o know how we can cut the vedio file into different formate using JMF.
    Given an input media file, the object is to cut pieces from the file and generate an output file from that.
    i want to cut vedio from X time to Y time.
    If any one is work on this please help.

    Why "split" the file? Just write a packet with a DataOutputStream(GZipOutputStream()), send it, and then read it back with a DataInputStream(GZipInputStream()) ...
    1. The GZip*Streams take care of compression.
    2. The Data*Streams take of byte order and so on.
    3. Your DatagramPacket handles the transport.
    The hardest part is figuring out what buffer size works best for your network... there is no "right" answer to that.

  • How do I open a .pdf file that I transferred to the ipod touch 5 using Itunes?

    How do I open a .pdf file that I transferred to the ipod touch 5 using Itunes?  It is shown in the Adobe Reader Documents window on Itunes. All help greatly appreciated!

    Is it not showing up in the documents tab when you open Adobe Reader?

  • Is there a size limit for the txt files to be viewed in the ipod ?

    when I pass a text file (.txt) in the notes folder, then I try to see it on my ipod nano, I can see just a part of it, the beginning. Is there a size limit for the .txt files to be viewed in the ipod nano? How to increase it?

    4kByte file size, 1000 notes max.

Maybe you are looking for

  • How do I download pages and numbers?

    Purchased pages and numbers in april. My computer crashed and I had to change the hard drive. Although I saved all my data many apps have to be reinstalled, but can't find out how or where on apps store. I began to download until I realized I was bei

  • Cloning.pl Error

    I'm cloning an 11g database from and to like operating systems, RHEL 4.7, 64bit. I am trying to run on the target (or cloned) system. clone.pl I get the following error: **Begin*********** Values for the following variables could not be obtained from

  • Spotlight takes the whole of the centre screen. Can it be moved

    Hate the way spotlight opens in the centre of the screen and cannot be moved. Am I missing a trick to this. I find its location really annoying. Like macular degeneration cos its right in the centre of your visual axis. Also is there a way of doing s

  • Release strategy in RFQ

    Hello Gurus,    Is there any way I can implement a release strategy for RFQ? Thanks, Jeffrey

  • What is $var variable name usage?

    Hi all, Good day. In SAP standard program, I saw some variable declared with prefix dollar sign. example, $lt_var Any different with normal variable name? Thanks. Greatly appreciate for any comment.