Repeat Function for Video?

Just got my ATV. Very cool. With an 8mb connection can watch the trailers in rediculously high quality playing on a 1080i monitor with no waiting. I'm really surprised. This is going to be big.
I was wondering if I am missing something or if there is no repeat function for video. Like, if you wanted to just have music videos playing in the background like you would music? Or, do you have to physically choose each show?

Anyone figured out if this is possible? Would be nice for kiosk, roadshow, window display type use if you could:
1) Set a piece of video content to loop or repeat.
2) Create a playlist of videos that would play one after the other without human interaction.
3) Randomly play videos from a playlist of videos without human interaction. (Similar to an audio shuffle function)
So far, trying a playlist in iTunes with video in it doesn't seem to work. The only place you can get at it in the Apple TV menu is through Music and then it errors saying there's no music in that playlist.
This would be great for digital signage applications too. You could set up the content you wanted in a particular playlist via iTunes and have the Apple TV sync/stream that particular content without having someone use the remote.
Doesn't look like there is any of this functionality built in at this point.
MacBook Pro 2.16 (2 GB RAM, 7200 RPM drive)   Mac OS X (10.4.9)   MacBook 1.83 (1 GB RAM) and Dual G5 (2.5 GHz, 2 GB RAM) also

Similar Messages

  • No loop/repeat feature for Videos - really?

    I find it ridiculous that you cannot set a video to repeat. Hanging an iPad from the backseat to play episodes of Yo Gabba Gabba would make like a lot easier if ITunes could just make this simple feature happen. The workarounds are insane and I haven't got one to work yet...

    And I've tried various video playlist apps to get around the problem but because the Yo Gabba Gabba shows were bought from iTunes, they are DRM protected and will not work with the apps.
    So iTunes doesn't have the simple feature I need and won't allow its videos (sorry, I meant to say MY videos since I purchased them) to work with apps that add the feature - ridiculous!
    Can an Apple rep chime in here please?

  • Repeat function for a player

    Hi
    I know I should find this in the JMFUtil source code, but I've effectively gotten lost. I'm sending out WAV files as RTP streams to Cisco IP Phones (which works just fine). I have added a ControllerListener to my processor, which catches the EndOfMediaEvent. Upon getting this event, I'd like to start the WAV file from the beginning again (as it is done in JMFUtil), but I can't quite figure out how.
    Here's what I'm trying: I try to use Processor.SetMediaTime() to rewind my processor, but this seems to have no effect whatsoever:
    processor.setMediaTime(new Time(0.0));
    I'd appreciate any pointers as to what I'm doing wrong.
    Thanks
    Stephan

    god I feel stupid. After having wasted an hour on this subject, 2 minutes after posting I found the solution.
    For anybody interested, just add a processor.start() after processor.setMediaTime and you're all set.

  • How can I repeat a for loop, once it's terms has been fulfilled???

    Well.. I've posted 2 different exceptions about this game today, but I managed to fix them all by myself, but now I'm facing another problem, which is NOT an error, but just a regular question.. HOW CAN I REPEAT A FOR LOOP ONCE IT HAS FULFILLED IT'S TERMS OF RUNNING?!
    I've been trying many different things, AND, the 'continue' statement too, and I honestly think that what it takes IS a continue statement, BUT I don't know how to use it so that it does what I want it too.. -.-'
    Anyway.. Enought chit-chat. I have a nice functional game running that maximum allows 3 apples in the air in the same time.. But now my question is: How can I make it create 3 more appels once the 3 first onces has either been catched or fallen out the screen..?
    Here's my COMPLETE sourcecode, so if you know just a little bit of Java you should be able to figure it out, and hopefully you'll be able to tell me what to do now, to make it repeat my for loop:
    Main.java:
    import java.applet.*;
    import java.awt.*;
    @SuppressWarnings("serial")
    public class Main extends Applet implements Runnable
         private Image buffering_image;
         private Graphics buffering_graphics;
         private int max_apples = 3;
         private int score = 0;
         private GameObject player;
         private GameObject[] apple = new GameObject[max_apples];
         private boolean move_left = false;
         private boolean move_right = false;
        public void init()
            load_content();
            setBackground(Color.BLACK);
         public void run()
              while(true)
                   if(move_left)
                        player.player_x -= player.movement_speed;
                   else if(move_right)
                        player.player_x += player.movement_speed;
                   for(int i = 0; i < max_apples; i++)
                       apple.apple_y += apple[i].falling_speed;
                   repaint();
                   prevent();
                   collision();
              try
              Thread.sleep(20);
              catch(InterruptedException ie)
              System.out.println(ie);
         private void prevent()
              if(player.player_x <= 0)
              player.player_x = 0;     
              else if(player.player_x >= 925)
              player.player_x = 925;     
         private void load_content()
         MediaTracker media = new MediaTracker(this);
         player = new GameObject(getImage(getCodeBase(), "Sprites/player.gif"));
         media.addImage(player.sprite, 0);
         for(int i = 0; i < max_apples; i++)
         apple[i] = new GameObject(getImage(getCodeBase(), "Sprites/apple.jpg"));
         try
         media.waitForAll();     
         catch(Exception e)
              System.out.println(e);
         public boolean collision()
              for(int i = 0; i < max_apples; i++)
              Rectangle apple_rect = new Rectangle(apple[i].apple_x, apple[i].apple_y,
    apple[i].sprite.getWidth(this),
    apple[i].sprite.getHeight(this));
              Rectangle player_rect = new Rectangle(player.player_x, player.player_y,
    player.sprite.getWidth(this),
    player.sprite.getHeight(this));
              if(apple_rect.intersects(player_rect))
                   if(apple[i].alive)
                   score++;
                   apple[i].alive = false;
                   if(!apple[i].alive)
                   apple[i].alive = false;     
         return true;
    public void update(Graphics g)
    if(buffering_image == null)
    buffering_image = createImage(getSize().width, getSize().height);
    buffering_graphics = buffering_image.getGraphics();
    buffering_graphics.setColor(getBackground());
    buffering_graphics.fillRect(0, 0, getSize().width, getSize().height);
    buffering_graphics.setColor(getForeground());
    paint(buffering_graphics);
    g.drawImage(buffering_image, 0, 0, this);
    public boolean keyDown(Event e, int i)
         i = e.key;
    if(i == 1006)
    move_left = true;
    else if(i == 1007)
         move_right = true;
              return true;     
    public boolean keyUp(Event e, int i)
         i = e.key;
    if(i == 1006)
    move_left = false;
    else if(i == 1007)
         move_right = false;
    return true;
    public void paint(Graphics g)
    g.drawImage(player.sprite, player.player_x, player.player_y, this);
    for(int i = 0; i < max_apples; i++)
         if(apple[i].alive)
              g.drawImage(apple[i].sprite, apple[i].apple_x, apple[i].apple_y, this);
    g.setColor(Color.RED);
    g.drawString("Score: " + score, 425, 100);
    public void start()
    Thread thread = new Thread(this);
    thread.start();
    @SuppressWarnings("deprecation")
         public void stop()
         Thread thread = new Thread(this);
    thread.stop();
    GameObject.java:import java.awt.*;
    import java.util.*;
    public class GameObject
    public Image sprite;
    public Random random = new Random();
    public int player_x;
    public int player_y;
    public int movement_speed = 15;
    public int falling_speed;
    public int apple_x;
    public int apple_y;
    public boolean alive;
    public GameObject(Image loaded_image)
         player_x = 425;
         player_y = 725;
         sprite = loaded_image;
         falling_speed = random.nextInt(10) + 1;
         apple_x = random.nextInt(920) + 1;
         apple_y = random.nextInt(100) + 1;
         alive = true;
    And now all I need is you to answer my question! =)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    package forums;
    import java.util.Random;
    import javax.swing.Timer;
    import javax.imageio.ImageIO;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class VimsiesRetardedAppleGamePanel extends JPanel implements KeyListener
      private static final long serialVersionUID = 1L;
      private static final int WIDTH = 800;
      private static final int HEIGHT = 600;
      private static final int MAX_APPLES = 3;
      private static final Random RANDOM = new Random();
      private int score = 0;
      private Player player;
      private Apple[] apples = new Apple[MAX_APPLES];
      private boolean moveLeft = false;
      private boolean moveRight = false;
      abstract class Sprite
        public final Image image;
        public int x;
        public int y;
        public boolean isAlive = true;
        public Sprite(String imageFilename, int x, int y) {
          try {
            this.image = ImageIO.read(new File(imageFilename));
          } catch (IOException e) {
            e.printStackTrace();
            throw new RuntimeException("Bailing out: Can't load images!");
          this.x = x;
          this.y = y;
          this.isAlive = true;
        public Rectangle getRectangle() {
          return new Rectangle(x, y, image.getWidth(null), image.getHeight(null));
      class Player extends Sprite
        public static final int SPEED = 15;
        public Player() {
          super("C:/Java/home/src/images/player.jpg", WIDTH/2, 0);
          y = HEIGHT-image.getHeight(null)-30;
      class Apple extends Sprite
        public int fallingSpeed;
        public Apple() {
          super("C:/Java/home/src/images/apple.jpg", 0, 0);
          reset();
        public void reset() {
          this.x = RANDOM.nextInt(WIDTH-image.getWidth(null));
          this.y = RANDOM.nextInt(300);
          this.fallingSpeed = RANDOM.nextInt(8) + 3;
          this.isAlive = true;
      private final Timer timer = new Timer(200,
        new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            repaint();
      public VimsiesRetardedAppleGamePanel() {
        this.player = new Player();
        for(int i=0; i<MAX_APPLES; i++) {
          apples[i] = new Apple();
        setBackground(Color.BLACK);
        setFocusable(true); // required to generate key listener events.
        addKeyListener(this);
        timer.setInitialDelay(1000);
        timer.start();
      public void keyPressed(KeyEvent e)  {
        if (e.getKeyCode() == e.VK_LEFT) {
          moveLeft = true;
          moveRight = false;
        } else if (e.getKeyCode() == e.VK_RIGHT) {
          moveRight = true;
          moveLeft = false;
      public void keyReleased(KeyEvent e) {
        moveRight = false;
        moveLeft = false;
      public void keyTyped(KeyEvent e) {
        // do nothing
      public void paintComponent(Graphics g) {
        super.paintComponent(g);
        //System.err.println("DEBUG: moveLeft="+moveLeft+", moveRight="+moveRight);
        if ( moveLeft ) {
          player.x -= player.SPEED;
          if (player.x < 0) {
            player.x = 0;
        } else if ( moveRight ) {
          player.x += player.SPEED;
          if (player.x > getWidth()) {
            player.x = getWidth();
        //System.err.println("DEBUG: player.x="+player.x);
        Rectangle playerRect = player.getRectangle();
        for ( Apple apple : apples ) {
          apple.y += apple.fallingSpeed;
          Rectangle appleRect = apple.getRectangle();
          if ( appleRect.intersects(playerRect) ) {
            if ( apple.isAlive ) {
              score++;
              apple.isAlive = false;
        g.drawImage(player.image, player.x, player.y, this);
        for( Apple apple : apples ) {
          if ( apple.isAlive ) {
            g.drawImage(apple.image, apple.x, apple.y, this);
        g.setColor(Color.RED);
        g.drawString("Score: " + score, WIDTH/2-30, 10);
      private static void createAndShowGUI() {
        JFrame frame = new JFrame("Vimsies Retarded Apple Game");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(new VimsiesRetardedAppleGamePanel());
        frame.pack();
        frame.setSize(WIDTH, HEIGHT);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
      public static void main(String[] args) {
        SwingUtilities.invokeLater(
          new Runnable() {
            public void run() {
              createAndShowGUI();
    }Hey Vimsie, try resetting a dead apple and see what happens.

  • Looking for Video playback app, like a DDR

    Hello, I'm looking for a program to cue up and playback quicktime files for live broadcast off of the computers hard drive. Kind of like a DDR but all running on the computer. It needs to have the ability to cue up files based on keystrokes, like 123 enter = playack of 123, and be pretty quick about it.
    I found Playbackpro.... at WWW.DTVideolabs.com but I'm looking for some other options.
    Thank you.

    Unfortuately I cant load the clips into quicktime since it's crashing when I load them..
    Just hoping for a light weight app that's sole function is video file inspection

  • How do I repeat loop a video file from iPod Touch to Apple TV ?

    I have an iPod Touch that is a few years old but running the latest software update.  I want to loop a video to then play through Apple TV onto 2 panels at the front of our shop.  I have saved the file as a video and Music Video (using Get Info etc) but neither version in the iPod touch will supply the repeat function - it works fine from my MacBook Pro but I cannot leave this in the shop overnight.  Any assistance would be greatly appreciated - evern if a third party app that actually works.  Thanks in advance, Shaun.

    This worked on older iOSs an may still work
    How to make a video repeat on iPod?: Apple Support Communities

  • 'Best for video' greyed out in displays prefs

    I finally got my macbook(blackbook running 10.5.8) hooked up to my lcd tv (i have been using my old eMac for this a while) & I'm fooling around with the settings to optimize performance & for some reason the 'Best for video' is greyed out in System prefs/Displays but the overscan function works(both in extended desktop mode & in video mirroring mode. I have always used this function on my eMac (OS X 10.3.9) without any problems. For now I'm using the apple mini dvi to video with an Svideo cable until i can afford to go either the hdmi or vga route, but I'd like to optimize this at least..anybody have a clue why 'Best for video' would be greyed out & how to fix this? could this be because of the Intel GMA 950 Gpu chipset in this generation of macbooks? I have posted to a few forums in the last few days with no answers so far...Anybody?

    I wouldn't worry too much about that setting. I believe all it ever did was set up a difference between blanking and black level, sometimes called "pedestal" in TV/video terminology. It's no big deal. You are probably correct that the GMA950 doesn't support it, so it's grayed out.

  • One chapter for video and another for images on same DVD?

    Hello,
    I don't yet have a Mac, but am very close to buying a MacBook. I do have a question about iDvd. Is it possible to create a theme or template or to even do this. I want to on a regular basis have a short 5-7 tops 10 minute video and 100-200 pictures. I'd like it so the user has the option to click one chapter and watch the video. Click the other and view the images with an option to browse the disc and save the images for uploading to their target of choice such as FB. Is this possible with iDvd?
    Thanks,
    BK

    Hello and Welcome to the discussions!
    Congratulations on being an 'almost' Mac purchaser!
    Yes, you can do what you want in iDVD.
    You will have theme templates that come with iDVD to use to make a nice theme for your projects.
    You will have the options to have the videos play individually by placing them on the menu one at a time, or to put them in iDVD the way you place a slideshow and have them play consecutively. Here is a link to a visual from Old Toad showing just that. Remember to look at this again when you get to this point:
    http://homepage.mac.com/toad.hall/.Pictures/Forum/iDVD8movieSS.png
    Another option for videos is to put them all into one iMovie and make chapters for each video. However, the chapters will not appear on the main menu, but in a separate submenu.
    You can then put the photos in iDVD as their own separate slideshow.
    When your DVD is viewed, the options will be to select to play the video slideshow or play the photo slideshow. You can rename these titles whatever you wish.
    If you make an iMovie, the options for it will be 'Play Movie' and 'Scene Selection' ( to link to the submenu with the iMovie chapter choices) and the same photo slideshow.
    In additiion, you can utilize the DVD-ROM option to have the photos and videos available for downloading to computer. This option will not be seen when the DVD disk is viewed on a set-top DVD player. iDVD's Help File says:
    +In iDVD, you can easily make it possible for viewers to download the photos and movies that appear in your slideshows. This is a nice feature for viewers who may, for example, want to print the photos for permanent display.+
    +The photos and movies are added to the DVD-ROM portion of your DVD, and viewers can access them when they insert the DVD into the drive on a computer. (The files are not accessible from a TV.)+
    Get the MacBook! Good luck with your projects. Take the time to do all the tutorials Apple offers for its iLife applications. Spend time here in the discussions for the apps you are using. Utilize the Search function to see if someone else has asked and received answers to a problem similar to yours. You will learn a lot and find answers that even the Apple Genius bar people do not have!
    Message was edited by: Beverly Maneatis

  • Looking for video inspector app to identify a/v tracks and codecs

    Can someone point me in the direction of an APP that will examine video files and identify the video and audio tracks and their codecs and other meta data related info?
    Trying to troubleshoot a problem where quicktime player is crashing on playback of certain mp4s.. but oddly it only happens on one of my machines that have the same version of quicktime..
    tx..
    Joe

    Unfortuately I cant load the clips into quicktime since it's crashing when I load them..
    Just hoping for a light weight app that's sole function is video file inspection

  • Volume control for video playback through Apple TV2

    I am trying to configure the volume settings used on airplay through apple TV2 and a macbook pro and Iphone4 all with most recent updates.
    I am using the apple remote app on my iphone to control the apple tv.
    Whats working:
    Using the pandora app on my iphone through aiplay to the apple tv, I can control the volume using the plus and minus buttons on the side of the iphone for volume control. Very cool and easy.
    Using the apple remote app on my iphone I can control the itunes volume of different speakers by clicking on the airplay icon and using a slider.  Not as cool as using the hard +/- buttons but still works.
    Whats not working:
    Controling volume on appleTV2 through the iphone remote app for video playbacks like netflix, and youtube.
    Why I want this: RIght now I can control most of the multimedia right from my iphone including cranking the music up:) But when I switch over to video(Netlfix, Youtube) I have to get out another remote (stereo reciever) to control the volume. It seems we are so close to being able to control everything off the iphone, the only thing missing is volume control for video playback.
    Is there a setting that can be changed or a solution I havent found?
    Thanks

    Same problem with TV3. HDMI volume output is not adjustable, neither with the original Apple remote nor with any universal. Why ? Every simple settop-box is able to be volume adjusted. And a Mac Mini too ?!!!
    I use a flatscreen TV. it has 3 HDMI inputs and one optical out for the audio going to an amp standing behind it. The sound of the TV is switched to go to the optical out.
    HDMI 1 is connected to the satellite settop box with its  own remote control ( channel +/-, volume +/- etc. ) it work s fine.
    HDMI 2 is connected to the MacMini HDMI out with its own remote control ( channel/music +/-, volume +/- ) it works fine too.
    HDMI 3 was connected to Apple TV3 with its own remote control ( channel/music +/- but no volume ). I sent the TV3 back to Apple.
    What's going wrong in the mind of Apple ? Why is the HDMI volume output of the MacMini adjustable with the Apple remote, and the TV3 not ?
    I want not to discuss, wether a 4th remote control is useful or not. I don't want it. I want to adjust the volume with the originl remote control of the specific unit I use, because I need it anyway. It worked since years, but not with Apple TV3.
    How can we help Apple to open the volume +/- function on their own remote control ?

  • After update to Firefox 8, the pause function on videos no longer works

    I updated both my desktop and laptop to Firefox 8.
    The laptop is a Toshiba and it's OS is Win 7 with Kapersky AV. The laptop has no problems.
    When using Firefox on the desktop, which is a clone, with Win XP as the OS, and Norton AV, all up to date, the pause function on videos often does not work.
    I have been able to play the same videos on this desktop computer using IE 8 and pause them with no problem.
    I need to have the pause function work, because I am interrupted a lot, and it can take me 3 hrs. to watch a one hour video due to that.
    Can anyone help? If not, I'll just have to use IE, though I much prefer Firefox. Thanks.

    The Statusbar is gone and the "lock" with it, as of Firefox 4.0. Security information about a web page is shown by the Site Identity Button.<br />
    The old padlock could give users a false sense that a site is secure by not supplying all of the information about a site and only showed that there is a secure connection that didn't guarantee that you are connected to the right server. The Site Identity Button was introduced in Firefox 3.0 to show more complete "identity" information for HTTPS web pages. <br />
    https://support.mozilla.com/en-US/kb/Site+Identity+Button
    You can add a padlock to the location bar with the Padlock add-on- https://addons.mozilla.org/firefox/addon/padlock-icon

  • After upgrade Calendar no longer has repeat function

    I have great trouble with Calender and Contact list.   Just upgraded to Maverik.   Seems every upgrade is downer for me.
    Calender gets many duplicates, No longer has Repeat function which makes the calender almost useless for me.
    Cannot use Cloud as I get 3 gb use overnight with no idea for what .  on limited ATT 5 gb hot spot.
    Only have Google Mail.   Does Google cause that?
    Contact list gets up to 5 duplicate entries.  
    Impossible to delete all the duplications unless I spend days, Then they just come back.  
    Long time Apple user getting discouraged with Apple, So many settings and complexity no without Jobs--I miss him.

    You don't see this when creating a new event?
    Contacts – Resolve Duplicates
    Try deleting Google Mail and see if that helps.

  • Repeat run for depreciation

    we posted depreciation from april 08 to March 31 09 in AFAB tcode. it has posted 12 entries for 12 month. in that first two entries are not pick functional area E004. so we wanted to bring function area for those entries. what is the proceedure?
    second thing if we are trying to run depriciation for april 08 again in repeat mode but it is throwing error like " Only period 012 can be posted in the repeat run" please give me solution

    It will not allow repeat run for period 8 as the planned depn run is done for 12th period.
    U continue with posting the depreciation in Period 12. It will post the entries

  • What is the best External Hard Drive for video edition?

    Hi guys, I'm looking for a good firewire external hard drive for video edition.
    I have 2 HD already but the bigest is a Seagate and is a trouble cause this one have an auto sleep system that is impossible to put out and when I'm printing to tape this one fall to sleep and the video that I'm transfering get a delay horrible!!
    I'm looking for a 1 tb or 2 tb external HD.
    Can you recomend me something??
    thanks a lot!

    Gufa wrote:
    Thanks Jouu, great prices but I need to know if those discs doesnt have the autosleep function!
    Thanks
    That was why I mentioned the 24/7 live Chat support, they (should) know the products they sell.
    8^)
    Joe

  • Best categorizing program for video?

    I would think that categorizing video clips for easy searches would be getting more and more popular now that hard drive space for storing files is more affordable. I've been trying to get my media organized in FCP and am now realizing that I need a separate program for categorization. Ive narrowed my search to two.. idive and foottracker.
    Does anyone have any experience with foottracker and idive? Any recommendations or pros and cons of those programs?
    I went through a similar dilemma when I was first trying to categorize my digital camera pictures. Apple did not have iphoto at that time so I bought a 3rd party program (iview) and as iphoto got more and more integrated with other apple software I had to redo all my keywording to work with iphoto.
    Foottracker seems to function the most like iphoto for video.. Maybe Ill get lucky and apple will buy out foottracker and make it part of the ilife suite? I have a feeling Ill buy a 3rd party program.. then apple will make an integrated one and Ill have to start from scratch again.
    Thanks!

    can iview keep track of time codes?
    Yes, IIRC.
    import video?
    Yes.
    break long files into subclips to assign keywords to sections? import into fcp? etc..
    No....
    Well, now you've hit on the central point, and why I don't use any of these apps having tried them out.
    You know what the best database for cataloguing video is? You're using it. It's called Final Cut Pro. (Or Avid, or your NLE of choice). FCP is the bets place to categorise and sort your footage, and that's just that. Any external software that did it - well, you'd just end up importing that info into FCP anyway.

Maybe you are looking for

  • New tab page only shows icons when I open a new window, not when I open additional tabs within existing window. Help!

    When I click the + sign to open a new blank tab, I don't see any of my favorite / pinned websites. I can only see this when I start a new browser window, and only for the "landing page". Once I go to any other page, I can not get my new tab page with

  • Horizontal Scroll Bar

    I have this site that I'm practicing on called Massattack Studios, it's been a work in progress for a while experimenting with Flash and Dreamweaver 8. In internet explorer my scroll bar situation works fine, in Fire Fox the unwanted horizontal scrol

  • Calling a function in remote database inside a stored procedure

    There are 2 Oracle databases with pseudo names Remote and Local. I have a function in Remote called FUS.F_Return_10 which simply returns 10 for testing purposes, where FUS is a schema name. In Local I want to create a procedure that will call the abo

  • Converting enumerations to lists with generics

    hello... i want to list off system properties and sort them. how can you convert enumerations to lists with generics? i tried the following in eclipse, but it fails...      Properties properties = System.getProperties( ) ;      Enumeration<?> enumera

  • Photos not appearing on Apple TV

    My music and movies are syncing properly to Apple TV; however my Photos are not. I've restarted both the Apple TV and my iMac, but still no Photos on the Apple TV.  The entire category Photos has disappeared.