Video app, want to run all videos

I would like to run the videos similar to music in a playlist. Why must I run each video individually?

Quote:
"Solution found for the iPad!
Create a playlist for which the first song is an mp3, not a video. Make the rest videos.
Start the playlist in iPod, and press the home screen - for some reason this won't work if the song is a video first. However you can scrub forward before you press the home screen if you like.
WAIT FOR THE FIRST VIDEO TO START PLAYING. Then press the video app on the home screen, and it will start the videos playing. You can't forward to the next song, but you can scrub forward. Not that that is much use to you. However at least you can watch your video playlist at the gym right! "
This works great! Only issue is that I found that I have to sync the playlist in both the "Movie" tab AND the "Music" tab to be able to get a combined play list. I name the song "AAA" so it pops to the top of the playlist (happens to be the theme song from the old TV show "The A-Team"!).
Funny thing - the guys atthe Apple store know nothing about this issue and have noted the 'work-around' for thier customers! I make sure to point 'em here as many say they don't visit this site.

Similar Messages

  • Applescript works in Automator, but not when app is opened - running all if statements at once?

    Good evening,
    I am new to applescript and have a newbie question regarding the following code. I am making a simple automator program to pull songs from iTunes to practice dancing to. I've started the program with a script that lets the user choose which dances (s)he wants to be played. Then I use applescript to run if statements for each dance, checking whether the dance was selected (and is therefore in "danceList"). If so, I call a separate app to handle finding and playing that dance. The whole thing runs perfectly once opened in automator.
    The problem is when I try to open the app for the first time, whether in finder or in automator -- it calls every single one of the if-statement applications, all at once, before anything else has happened, and thus crashes itself. I have no idea why. I have searched various help sites, tried multiple variations of the if statement code (waltz is an example, below) and making the sub-applications into workflows, but that didn't help.
    Any advice or pointers in the right direction/to appropriate resources would be greatly appreciated.
    Here is a snippet from the relevant code: (didn't include it all, it's the same thing with more if statements)
    on run {danceList}
              if danceList is not null then
                        if danceList contains "Waltz" then
                                       tell application "waltz"
                                                      run
                                       end tell
                                       delay 110
                        else
                                       tell application "waltz"
                                                      quit
                                       end tell
                        end if
                        if danceList contains "Tango" then
                                       tell application "tango"
                                                      run
                                       end tell
                                       delay 110
                        end if
                        if danceList contains "Viennese Waltz" then
                                       tell application "viennese"
                                                      run
                                       end tell
                                       delay 110
                        end if
    ... and so forth ...
        end if
        return danceList
    end run

    Ok, let me try to do a better job explaining.
    I am making this app to simulate the rounds used in competitive ballroom dancing. It lets the user select the dances they will participate in, and then, for each dance, the program reads out the dance title, chooses all songs in iTunes with that genre, selects one at random, starts playing it, waits ninety seconds, and then stops the music. Then a twenty second pause before the next dance. I have made eleven apps for this; one is the main app that calls the others; the others are identical and handle the individual dances.
    Here is all the code I have:
    1. Ask for confirmation - dialogue box explaining app
    2. Get specified text - list of all dances, passed to first section of applescript
    3. First section of script - found on internet, altered for multiple selection; lets user choose multiple dances from a list (code is below pic)
    on run {input, parameters}
    choose item(s) from text
    input: text - items are delimited by paragraphs (returns/newlines)
    output: a list of paragraphs selected
              set output to {}
              set NameList to {}
              set NameList to paragraphs of (input as text)
      activate me
              set TheChoice to (choose from list NameList with title "Choose Dances" with empty selection allowed and multiple selections allowed)
              if TheChoice is false then
                        error number -128 -- cancel
              else
                        set output to TheChoice
              end if
              return the output -- pass the result to the next action
    end run
    4. Store value of variable as "danceList" - probably unnecessary but gave it a name
    5. Second section of applescript - what's been discussed previously, here's the full code:
    on run {danceList}
              if danceList is not "" then
                        if danceList contains "Waltz" then
                                  tell application "waltz"
                                            run
                                  end tell
                                  delay 110
                        end if
                        if danceList contains "Tango" then
                                  tell application "tango"
                                            run
                                  end tell
                                  delay 110
                        end if
                        if danceList contains "Viennese Waltz" then
                                  tell application "viennese"
                                            run
                                  end tell
                                  delay 110
                        end if
                        if danceList contains "Foxtrot" then
                                  tell application "foxtrot"
                                            run
                                  end tell
                                  delay 110
                        end if
                        if danceList contains "Quickstep" then
                                  tell application "quickstep"
                                            run
                                  end tell
                                  delay 110
                        end if
                        if danceList contains "Samba" then
                                  tell application "samba"
                                            run
                                  end tell
                                  delay 110
                        end if
                        if danceList contains "Cha cha" then
                                  tell application "chacha"
                                            run
                                  end tell
                                  delay 110
                        end if
                        if danceList contains "Rumba" then
                                  tell application "rumba"
                                            run
                                  end tell
                                  delay 110
                        end if
                        if danceList contains "Paso Doble" then
                                  tell application "paso"
                                            run
                                  end tell
                                  delay 110
                        end if
                        if danceList contains "Jive" then
                                  tell application "jive"
                                            run
                                  end tell
                                  delay 110
                        end if
              end if
              return danceList
    end run
    Here is the code for the waltz app. All the other dance apps are identical; they just search for different terms and have a different introduction spoken.
    1. Get specified text - "Next Round is the Waltz, etc."
    2. Speak text - reads text out loud so people know what's next
    3. Find iTunes tracks where genre is "Waltz" or "waltz"
    4. select these tracks
    5. store all these in variable "tracks"
    6. applescript to pick a random track from "tracks":
    on run {tracks}
              set maxNumber to count of tracks
              set randy to random number from 1 to maxNumber
              set chosenTrack to item randy of tracks
              return chosenTrack
    end run
    7. 3 second pause between speech and music
    8. Start playing the chosen track
    9. 90 second wait while track plays
    10. pause itunes (stop music)
    11. end app
    Again, my concern here is why the program runs fine once it has already been opened in automator (say second or third time running it there) but when run from finder, or first opened in automator, it calls all the dance apps at once. Then they give error messages because the speech section is first, and this can't be done simultaneously:
    Also, not sure if this is relevant, but I have a spinning gear in the corner of my mac that I believe is automator launcher, and it's showing all the apps as running even after I've ok'd their error messages and they have disappeared from the dock. I can exit waltz and danceApp, which are the two actually running, but the others won't stop until I've ended automator launcher in activity monitor.
    Hopefully this is more helpful. Thanks again.

  • Unit test: Want to run test case after async test function?

    Hi,
    On flash builder i decide to do unit test for my .as class. I did few unit test. Working fine. But now i want to write unit test for the following case:
    I wrote a [Test(async)]  function to find the loading class working fine or not.Its working fine.
    On load complete i am able to read the data and store the data on the test class variables.
    I want to run all other [Test] case function after completion of the xml load function.How to do that?
    Thanks,
    Siva

    Hi,
    On flash builder i decide to do unit test for my .as class. I did few unit test. Working fine. But now i want to write unit test for the following case:
    I wrote a [Test(async)]  function to find the loading class working fine or not.Its working fine.
    On load complete i am able to read the data and store the data on the test class variables.
    I want to run all other [Test] case function after completion of the xml load function.How to do that?
    Thanks,
    Siva

  • When i import movies from my iPhoto app to my iMovie app does it make a copy (thereby using double the hard disk space) or does it link to my iPhoto app? The reason i ask is i want to archive all my videos from iPhoto/iMovie. HELP!

    When i import movies from my iPhoto app to my iMovie app does it make a copy (thereby using double the hard disk space) or does it link to my iPhoto app? The reason i ask is i want to archive all my videos from iPhoto/iMovie. Do i need to archive the movies in iPhoto AND iMovie? HELP!

    Hi - I'm having the same problem with freeing up space on the HD. If I can't free space if I'm using any part of the clip, how can I split up the clips so that I can discard the part I won't use? This is crazy! I have only 4 GB of free space left!
    Also, I've tried to transfer the project file to my external HD but I keep getting an error saying I can't transfer it. I've been told this is because I don't have enough space on the HD for the transfer. I tried a similar transfer with another computer with plenty of HD space but the same error occurred. Is there a way to break up the project file into small pieces for the transfer (I'm thinking the whole movie file is just too big)?
    Thanks for any info!

  • Does GeForce 7350LE video card fan run all the time or at certain temperatures?

    I have a HP Pavilion m8147c  Media Center with AMD Atlon 64 X2 Dual Core Processor 5600+ 2.80 GHz  3GB Ram and when running lately the monitor has started to go into sleep mode or something.Sometimes there is a warning that says something like no signal from DVI and one more but doesn't stay on long enough to read it all.I am running Vista Home Premium 32 bit.I had just installed a new game but pretty sure that has nothing to do with it as I used System Restore and backed up to a time before it was installed.At first it was only when playing games but now it happens with hardly anything running.This pc was bought in july 2007 and I have another desktop but I let my wife use one and I use the other.I opened the case and cleaned out all the dust but noticed when I started it up again the fan is not running on the video card.I don't know if it comes on at certain temps or runs all the time but I feel this is the problem.It has been on for about an hour and not come on at all.Any information will be appreciated.
    This question was solved.
    View Solution.

    captna wrote: Thanks Hanspuppa for the help you've given.I have two more questions.Why do I need the NVIDEA drivers when I will be installing a GIGABYTE card,and the Memory Interface on both cards is 64 bit,how does that affect a 32 bit Vista operating system?Just curious as I have never had any dealings with a video/graphics card before and I would think that it should be a 32 bit but since the GeForce 7350LE is also 64 bit it obviously works..I really appreciate the links and I am ordering the card now,thanks again you.For some reason I am not getting email notices when you reply but I am checking back every so often to see.
    Hello captna, Usually when you purchase a new video card or other hardware device, the drivers that are included on the CD are an older version, sometimes as much as six months old. The chipset on any Brand of a given model would be either an Nvidia or an AMD ATI.
    The chipset is the main component of the video card that controls most of the operations of the video card.
    Since all the manufacturers of the Nvidia video cards use the chipset purchased from Nvidia, they are all the same chipset for any particular model. The different manufacturers can and do add or enable features for their particular cards, but the chipset is still the same.
    Since the drivers from the manufacturer would be an older version, and Nvidia releases new versions quite often, it would be best to use the Nvidia drivers, since they would have updated fixes and sometimes features, and added support for some newer cards.
    Your reference to the Memory Interface on both cards is 64 bit, has nothing to do with your version of the operating system. It just relates to the way, and speed of the interaction of the video card with the system (buss).
    The higher the number of the Memory Interface, the more data that can be moved in and out of the video card, which results in a faster video performance. This just becomes important when playing games for the most part.
    Using the system just for web surfing, emailing and some light gaming, would not have that much effect on the system.
    More important to the system would be the amount of video card onboard memory. The Gigabyte has 1 GB of onboard memory compared to your original video card with 128 MBs of memory. This additional memory would likely show a slight performance increase in any light gaming.
    You want see much, if any difference in the performance of your system, with the exception of perhaps the light gaming performance increase, with the new Gigabyte video card over the  GeForce 7350LE. You should not  experience the heat related issue as you had with the faulty fan on the  GeForce 7350LE.
    You can go into your personal settings on the Forum and select to not receive the email notices when someone responds to one of your post. Several years ago while on the Dell Community Forum, I would receive over a hundred emails every day until I disabled this feature.
    Please click the White Kudos star on the left, to say thanks.
    Please mark Accept As Solution if it solves your problem.

  • Hi all, I have 15 images in a file. Every images are continues of previous image. i want to stream all images into my application( Like video). Any ideas?????

    Hi all,
    I am trying to show an real time video. From my ip camera the sequence of images are stored in particular folder. Now i want to stream all images like video in my application. Have any ideas??????

    Search the forums since this is only about the umpteenth time this question has been asked. We are not a buyer's guide here.

  • As a vision-impaired user of a 1.25GH ( 1.25MB RAM) iMac G4 I am very reluctant to try to install Leopard on it (running Tiger at the moment).  I want to have all my old non-Apple apps there.  Robert Davis.

    As a vision-impaired user of an iMac G4 (1.25GH and 1.25MB of RAM) I am very wary of putting Leopard on my system.  I know if I do a clean install I'll have to put all my software back on which would take me ages as I have stuff in OS 9 as well running in Classic, but if I do an archive install I know the Apple software will go in but what happens to all my other apps?  The preamble on the disk doesn't make this really clear.  If it is too difficult then I guess it's time for a new Intel model but I like the G4 as I can get my face right up in the screen without having to move the computer, something you have to do to with the new models.  Can anyone help - I don't want to be stuck for a month without a computer until my stepson comes back from holidays as he is head of IT at a school  school that run all Macs.  Please excuse any faux pas in this - I am new to the support community.
    RobertfromBradbury.

    You could use A&I, selecting Preserve Users and Network Settings. This should keep your third party apps but you will lose Classic and OS 9, which are not supported by Leopard. Before upgrading, I would also check to see which third party apps may not be Leopard compatible or will need updating.
    If you still want to proceed, you should definitely have a cloned bootable backup of your current setup, in case you need to revert, or find something possibly missing after you upgrade. I wouldn't make a move without one. I use Carbon Copy Cloner. You could keep the old setup that includes Classic and OS 9 on a separate partition on an external drive and still be able to work from that when needed.
    http://www.bombich.com/
    You might find some apps that are not Leopard compatible.
    You will also need enough free drive space to accomodate the new OS, as well as the Previous System Folder.
    I don't see why you wouldn't be able to get your face right up to the screen of any of the new iMacs. And you can have a much bigger screen, 27". But you will be stuck running Lion, which will try to turn your computer into a giant iPad. A refurb might still be able to run Snow Leopard.

  • I want to export all the screen text in a long video to a text doc

    I want to export all the screen text in a long video to a text document. Is there a way to do that without copying and pasting each item?

    Fortunately, I still have the project ready at hand, so I can cut and paste each text window from there, but I do admire the creativity of your approach. I thought about making the desired document as a collection of still images without the video track removed, but I decided that would be too cumbersome for this purpose.
    It still seems to me that there ought to be a way to access the text resident in FCP and turn it into a text file, but maybe this will have to written into the program as a feature. Probably, it would not be a high priority among all the other tasks on the wish list.
    Thanks for your help. If I learn something interesting, I will post it for the benefit of others who might want do what I want to do now. Off I go now to cut and paste!

  • Google app can't play all the audio and video on this page, any suggestions?

    New Lenovo Yoga laptop with W8.1. I have downloaded the google app, and when I search for something and the go to open a video, the flash player doesn't work and I get a message across the top of the window saying "google app can't play all the audio and video on this page"
    Does anyone have a fix? i can only find a fix for google chrome, not their app.
    Thanks

    The "app" from the windows app store called "google search" http://apps.microsoft.com/windows/en-gb/app/308dc145-6851-487d-b83b-1223a3b52dc2
    It isn't specific to search video or anything else, you just type in the search and it finds the answers, but it isn't done via chrome. When the result includes a video or audio and I click on the link to that page, the app kicks up that the flash player needs downloading. I can't work out how to do it

  • I have been filling up my internal memory on my laptop after years of video editing. I now want to export all this footage to an external hard drive. What is the proper way to do this.

    I have been filling up my internal memory on my laptop after years of video editing. I now want to export all this footage to an external hard drive. What is the proper way to do this.

    Are the videos being stored in iMovie or another application? Have you exported/shared the video? If the video is in iMovie what version of iMovie are you using? Give as much info as possible, and you may also want to post the question in the iLife section of this forum since more people with video skills will be reading the iLife/iMovie threads.

  • HT201302 my iphone 5 will not turn on. i want to save all my pictures and videos to my laptop but i cannot do it as my iphone will not switch on. how do i get them?

    my iphone 5 will not turn on. i want to save all my pictures and videos to my laptop but i cannot do it as my iphone will not switch on. how do i get them?

    A reset may help. Tap and hold the Home button and the On/Off buttons for approximately 10-15 seconds, until the Apple logo reappears. When the logo appears, release both buttons.
    No content is affected by this procedure.

  • Help: iTunes wants to delete all my music and videos off of my iPhone!

    I usually keep the option to manually manage music and videos on my iPhone. I only use 1 pc to transfer music and movies to and from my iPhone. Recently for some reason when I launched iTunes, an error message kept poping up repeatedly saying "The iTunes Library file cannot be saved." I fixed the error message by adjusting the user access privileges to my music folder.
    Now my music library is completely empty in iTunes, but that shouldn't be a problem because I manually manage my music and videos. However, when I checked the iPhone page in iTunes, the checkbox for manually manage music and videos is unchecked.
    So I went to go check the check box so that I can continue to add some more music and videos to my iPhone, however a message box pops up saying:
    "The iPhone "my iPhone" is synced with another iTunes library. Do you want to erase this iPhone and sync with this iTunes library?"
    I have about 12 gigs worth of music and videos which I have carefully hand picked over a period of about 3 months and now iTunes wants to delete all of it because it thinks I want to "sync with another library". I only hope someone can understand how frustrating this is for me. All I want to do is continue to be able to add music and videos to my iPhone without having to erase months worth of work putting the current music I have on there. Can anyone help me?

    Thanks for your reply. I don't keep all of my music in the iTunes' designated music folder. I don't like the way iTunes reorganizes my songs and I keep all my music in my own self organized music folders as I don't use iTunes as my primary media application. Not to mention allot of my files come from all different corners of my computer's hard drive. It would literally take months to go through over 20 gigs of media files to pick out the songs I have in my iPhone library to rebuild an iTunes library. Like i said, I don't even use iTunes other than to transfer files to my iPhone. I thought the purpose of manually managing the files was so you don't have to sync it with the iTunes library but now it won't give my that option without requiring me to delete everything on my phone I worked so hard on.
    What I don't understand is logically or technically why iTunes HAS to delete all the content off of my iphone. Who's decision in the Apple's software engineering department was to require the one's iPhone to be erased if someone loses their iTunes library? Its frustrating because it makes no sense and I feel as if the software is punishing me for reasons I don't understand by threatening to delete all my content off my phone. Is there absolutely no way to transfer my music to my iPhone without deleting everything currently on and completely rebuilding my music library from scratch?

  • Dispite I downloaded app video calling for facebook from appStore, my safari on my MacBook don't work, instead app wants to change browser. If I do this (changing user-agent) what will happen with my safari???

    Dispite I downloaded app video calling for facebook from appStore, my safari on my MacBook don't work, instead app wants to change browser. If I do this (changing user-agent) what will happen with my safari??? I have new (updated 10.7.1) OSX, Lion !!!
    Kind regards!
    Petar

    Dispite I downloaded app video calling for facebook from appStore, my safari on my MacBook don't work, instead app wants to change browser. If I do this (changing user-agent) what will happen with my safari??? I have new (updated 10.7.1) OSX, Lion !!!
    Kind regards!
    Petar

  • I just got a MacBook and I have had an iPhone for a few years. I want to sync all my music, videos, etc from my iPhone to my new Mac which has nothing on it, but I don't know how.

    Hi! So I recently bought a new MacBook, but I've had an iPhone for years. I want to sync all of my music from my iPhone to my Mac's iTunes. Whenever I open iTunes and connect my phone though, it want to sync my iTunes library, instead of the other way around. This would erase all my music from my phone. Anyone know how to sync the other way? From iPhone to Mac?

    You cannot synch the other way, with the exception of songs purchased on iTunes.
    What you need to do is move the iTunes library from the computer to which you've been synching your phone and put it on your new MacBook. 

  • HT204382 if i buy guick time X i will be able to run all the formats of videos

    if i buy guick time X i will be able to run all the formats of videos

    There is no QuickTime X for Windows, and QuickTime Pro will not play any file that the free QuickTime Player won't.
    (76415)

Maybe you are looking for