Help with High School Football Recruiting DVD

Hello,
I need help with making a DVD highlighting my son's High School Football plays.
I have 10 different DVD's (with 10 different High School Football games that he played in) and I would like to cut various snippets (segments) from each DVD that illustrate his great plays . . . and then put them together onto ONE DVD + add music and I want to add writing too.
I don't know where to begin.
Can anyone help guide me please ?

You will find best advice over on the video forum. Most of us here are photographers.
Click on the link below and copy and paste your question again. Good luck.
Video questions: Click here for Premiere Elements Forum

Similar Messages

  • Need help with high school lab

    Hey guys, I just got assigned this lab in my Java class today, and well, this is the first time i've ever been stuck in Java, and I figured i could turn to the Sun Community for help. The lab is to design a program that when a user enters a number, the program outputs a wedge of the stars, using that number as the starting line. So, in case i worded that horribly heres an example:
    user enters number: 5
    ouput:
    and heres my code so far, I think im on track, but i have no clue where to go from here:
    //import
    import java.util.Scanner;
    public class starLab
        public static void main(String []args)
        {//objects
        Scanner scan=new Scanner (System.in);
        int start;
        System.out.print("Enter the initial number of stars: ");
        start=scan.nextInt();
        while (start>1)
                  int star=start;
                       while(star>=1)
                            {System.out.print("*");
                             star=star-1;
                            start=start-1;
    }

    That doesn't work either, it outputs a crazy amount of stars on one line...i entered 5, and outputed 15 stars on one line?
    Ah im horribly confused, and yes it is an off by one issue, but I cant figure out how to get it to bump down lines and subtract one star...heres what ive got after modifications
    public class starLab
        public static void main(String []args)
        {//objects
        Scanner scan=new Scanner (System.in);
        int start;
        System.out.print("Enter the initial number of stars: ");
        start=scan.nextInt();
        while (start>=1)
                  int star=start;
                       while(star>=1)
                            {System.out.print("*");
                             star=star-1;
                            start=start-1;
    }

  • Create a disc of high school football game

    Hello,
    I am a high school football coach. We just a new camera. It is a Panasonic HDC. I had my film guy film the Varsity game tonight and all I want to do is take the video from the camera and make it right into a DVD. I do not want to edit it or play with it or anything like that. I also want it to be really fast. I would love to get back to the office, plug it, and let it do its thing. Please help!! Thanks.

    Welcome to the forums.
    Creating a DVD can be smooth, but it's rarely fast (depends for one on how fast your Mac is). Here's a video tutorial on using iDVD's One Step capability: http://www.apple.com/ilife/tutorials/#idvd-onestep
    John

  • Best Outdoors WAPs for a High School Football Field?

    Ubiquiti is my choice if you don't need any advanced features.  How many APs depends on how big the seating area is and how many people you expect to connect.  I'm also under the assumption the bleachers are metal, so you need to make sure you take that into your WLAN design.

    What access points do you recommend for an outdoors situation? We want to provide Wi-Fi to spectators at a high school football field. The seating area is restricted to a single location. Two to three APs will cover the area.
    The initial purchasing price and on-going costs are of concern. We would prefer not to have  recurring costs when it comes to the access points.
    We have looked at Meraki, Ubiquiti, Aerohive. Which ones would you recommend?
    This topic first appeared in the Spiceworks Community

  • Do I use compressor to rip High School football game from DVD?

    I am making a recruitment video for a Senior in High School.  I film all of his local games, but two weeks ago they played out of state.  He just gave me a DVD of the game footage.  Would I use compressor to turn the footage back into an editable format?  I use ProRes LT in FCP, but have never had to use someone else's DVD.  I know the footage has already been compressed since it has been placed on a DVD, so I want to use the best options for the best quailty. 

    Look at Flip4Mac. The free version should allow you to view the wmv file. This paid versions should allow you to convert it. You can try before you buy to make sure it works. It should work with Compressor.
    Another option is the free open-source Handbrake. I have no personal experience with this for wmv, but I have heard anecdotally that it may work.

  • Help with Multiple Source Video on DVD

    I am new to Premiere 9 trying to make a DVD of a birthday party with video from my Canon Vixia HF200 and a slideshow I exported from iPhoto to a m4v file.  It was my understanding from reading earlier posts I should export the instant movie I made by going to Share and export "for viewing on computer or make DVD" and then doing the same for the slideshow.  But instead of an avi file, it makes a flv file and I am unable to open it or import it back to Premiere 9 to create a DVD.  I am really confused as to how to go about putting these two files together to make a DVD.  (I can't just put them together on the same project?)   I have a iMac computer and am used to making movies on iMovie where you can just add clips from various sources and then export to iDVD.  I am finding it difficult to get the help I need from the Help menu on the program.  I know I must be doing something wrong.  Please help if you can.

    Now we know why we've been confused! At the beginning of this discussion, you were talking about creating a DVD. Now you're talking about creating a BluRay disc, which is a very different project.
    To output a hi-def file from Premiere Elements, go to Share/Computer/MPEG and use the 1440x1080i output preset.
    Should load right into a Toast BluRay project!
    I don't know if Toast has a WebDVD project, but you can output a WebDVD project from Premiere Elements. Just set up a menu system as you would if you were creating a DVD or BluRay in Premiere Elements. Then go to Share/WebDVD to output your files.
    A webDVD is a combination of FLV video and html files that can be posted to a site (including Photoshop.com) and then navigated just like a DVD -- except that it's online.
    Glad to hear you're ordering the book too! Thanks for supporting our Muvipix.com mission!

  • Re:  Help with Java school program

    Hi, I've been trying to figure out how to make my DoubleCanvas java program to work. What I'm supposed to do is have a left canvas and a right canvas. In the middle of the applet is a button panel that can select to either draw on the left, right, or both canvases. We have a main DoubleCanvas applet class, then each canvas is drawn from a MyCanvas class. My problem is I don't know how to switch from one canvas to the other canvas from the MyCanvas class.
    Any help would be much appreciated. Thanks. :)

    Hi, sorry. I didn't want to clutter the page with stuff that might be wrong. This is my DoubleCanvas applet class in the works. I'm not sure I did the listeners correct. And I haven't gotten to add the Checkbox event stuff in the MyCanvas class in yet, because I don't know how to make the checkboxes activate a particular canvas. If you feel I should post the MyCanvas class please let me know, it's somewhat long.
    DoubleCanvas class
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.lang.*;
    import java.math.*;
    public class DoubleCanvas extends Applet
    // ---- class and instance objects ----
    private Panel button_panel;
    private MyCanvas drawing_canvas1, drawing_canvas2;
    private CheckboxGroup canvas;
    private Checkbox left, right, both;
    private Choice color_choices;
    private Button undo_but, redo_but, erase_but;
    public void init()
    color_choices = new Choice();
    color_choices.add("white");
    color_choices.add("yellow");
    color_choices.add("gray");
    color_choices.add("magenta");
    erase_but = new Button("erase");
    undo_but = new Button("undo");
    redo_but = new Button("redo");
    canvas = new CheckboxGroup();
    left = new Checkbox ( "<-", true, canvas );
    right = new Checkbox ( "->", false, canvas );
    both = new Checkbox ( "<->", false, canvas );
    button_panel = new Panel();
    drawing_canvas1 = new MyCanvas();
    drawing_canvas2 = new MyCanvas();
    drawing_canvas1.setBackground(Color.black);
    drawing_canvas2.setBackground(Color.black);
    setLayout( new GridLayout(1,3) );
    button_panel.setLayout( new GridLayout(7,1) );
    button_panel.add( left );
    button_panel.add( right );
    button_panel.add( both );
    button_panel.add( color_choices );
    button_panel.add( erase_but );
    button_panel.add( undo_but );
    button_panel.add( redo_but );
    add( drawing_canvas1 );
    add( button_panel );
    add( drawing_canvas2 );
    left.addItemListener( drawing_canvas1 );
    right.addItemListener( drawing_canvas1 );
    both.addItemListener( drawing_canvas1 );
    color_choices.addItemListener( drawing_canvas1 );
    erase_but.addActionListener( drawing_canvas1);
    undo_but.addActionListener( drawing_canvas1 );
    redo_but.addActionListener( drawing_canvas1 );
    public void paint( Graphics g ) {

  • P55-GD65 (Bios 1.6) Need help with RAID-1 and SATA DVD-RW

    Sorry if this has been already asked; did a search.
    Trying to configure 2-Seagate Barracuda 7200.12 750 GB drives in a RAID-1.
    I also have a SATA DVD-RW plugged in as well.
    I enabled RAID mode = RAID in BIOS, pressed CTRL-I when booting to enter Intel's RAID configure screen, when there set the RAID 1 volume, exited.
    Booted into Windows XP, went to load the RAID driver and..... no DVD-RW to read the disk. ?
    Back in the BIOS, sure enough, all the SATA devices had disappeared except for SATA 7.
    Is this a restriction of Intel RAID - that you have any RAID, all the SATA ports are RAID only?
    I couldn't find any settings to choose which SATA ports are RAID and which are not.
    Thanks,

    Quote from: NovJoe on 11-February-10, 22:03:57
    Try to move your DVD drive to another SATA port.
    I did end up moving the DVD-RW to SATA7 and yes it shows up always.
    But that is a disappointment. Apparently, with these Intel SATA controllers, RAID is an all or nothing proposition - turn on RAID and that will be the only use for SATA1-SATA6. At least that's my theory; Intel doesn't spell this out. This is a bummer for me, as I had hoped to use SATA1 and SATA2 for a RAID-1 and hang other devices off SATA3-7.
    I could use the Jmicron RAID, as that uses just two ports, but that occupies SATA7 and SATA8, and (apparently) SATA8 is the eSATA connector on the rear panel - not very useful for a RAID.

  • Can someone help with my school work... please...

    Hello Guys,
    I'm new here and I need help. I would like to know on how to create a Gantt Chart for my CPU Scheduling FCFS, SJN, SRTF, Priority and RR?
    I really need it for my school work.
    Thank you.

    JFreeChart has a Gantt chart component.

  • Need Help with my School Assignment - Error Message

    Hey guys,
    I'm doing a school assignment for my Object Oriented Java programing class. Here's the assignment requirements:
    "There are five kinds of flowers, and their associated costs. Create an array of strings that holds the names of these flowers. Create another array that holds the cost of each corresponding flower. Your program should read the name of a flower and the quantity desired by a customer. Locate the flower in the name array and use that index to find the cost per stem in the cost array. Compute and print the total cost of the sale. Write your solution in one class: FlowerCounterArray.
    The solution should implement the following two methods:
    - addOrder(String flowerName, int quantity) to add to the order. This is in addition to reading from the terminal.
    - printTotal() to print out the total cost to the terminal."
    I wrote up some code so far and I want to test it, but I am getting this error: "']' expected" on the newFlower[0] = new FlowerCounterArrays("petunia", 0.50]; line near the end of the code.
    Here's my code:
    public class FlowerCounterArrays {
        private String flowerName;
        private double price;
        public void addOrder(String flowerName, int quantity) {
            for (FlowerCounterArrays flower : newFlower) {
                if (flower.equals(flowerName)) {
                    total = price * quantity;
                    System.out.println("The price for " + quantity + " " + flower + "(s) is " + total);
                else {
                    System.out.println("Unfortunately we do not carry that type of flower here.");
        public void printTotal() {
            System.out.println(total);
        FlowerCounterArrays[] newFlower = new FlowerCounterArrays[5];
        newFlower[0] = new FlowerCounterArrays("petunia", 0.50];
        newFlower[1] = new FlowerCounterArrays("pansy", 0.75);
        newFlower[2] = new FlowerCounterArrays("rose", 1.50);
        newFlower[3] = new FlowerCounterArrays("violet", 0.50);
        newFlower[4] = new FlowerCounterArrays("carnation", 0.80);
    }Thanks for the help guys! Much appreciated!
    Edited by: he4dhuntr on Oct 14, 2008 1:33 PM

    Ok. I'm kind of new to all this, so some stuff I'm not 100% clear on.
    I get what you're saying though. I put the array into the method.
    Although now I get a new errod: "cannot find symbol - constructor FlowerCounterArrays(java.lang.String,double)"
    I get this error on my newFlower[0] = new FlowerCounterArrays("petunia", 0.50); line
    Here's my new code:
    public class FlowerCounterArrays {
        private String flowerName;
        private double price;
        public void addOrder(String flowerName, int quantity) {
            FlowerCounterArrays[] newFlower = new FlowerCounterArrays[5];
            newFlower[0] = new FlowerCounterArrays("petunia", 0.50);
            newFlower[1] = new FlowerCounterArrays("pansy", 0.75);
            newFlower[2] = new FlowerCounterArrays("rose", 1.50);
            newFlower[3] = new FlowerCounterArrays("violet", 0.50);
            newFlower[4] = new FlowerCounterArrays("carnation", 0.80);
            for (FlowerCounterArrays flower : newFlower) {
                if (flower.equals(flowerName)) {
                    total = price * quantity;
                    System.out.println("The price for " + quantity + " " + flower + "(s) is " + total);
                else {
                    System.out.println("Unfortunately we do not carry that type of flower here.");
        public void printTotal() {
            System.out.println(total);
    }Thanks for the help so far!

  • Need Help With A School iPad

    My school gave me an iPad this year and didn't take it back before the summer so I'm pretty sure they forgot they gave me one (I switched facilitators while getting it so the info probably got lost, and when I was returning my books they didn't ask me about it). But recently it's been restricing random sites and such. I need to know how to either remove the Meraki profiles, or how to reset it to factory settings. I tried the DFU reset trick, but the profiles are still there. I have an iCloud backup with the data from the iPad before I reset it, and I'd like to use that back up. I also can't connect it to my iTunes. I'm fine with jaibreaking it so the restrictions are off, and I can do what I want with the iPad, as long as I can un-jailbreak it right after so if they do want it back they'll just put the profiles back on. If this is possible please tell me. My computer is garbage so the iPad is the best way of doing all my internet things.

    Yes I would take it back as soon as possible. Meraki has the ability to track your iPad so they may come knocking at your door knowing that you have it. If it has been reported stolen, the police can get a warrant and come searching for it. Get rid of the problem before the problem gets to you. Do the right thing and return it.

  • Please help with handbrake and changing my dvd

    I recorded an event for someone and then took the tapes to Ritz camera and had them put them on a DVD for me. The company they use is called _Yes Video_, I downloaded the video to my Mac and it plays but the problem is I need to edit some things. So I went to Yes video website and looked in the forum and saw a thread about handbrake and how to convert, so you can import into I movie. Well I did this but it only converts part of the movie, the time on the video say 1:48 but when handbrake converts it then it only comes to 56 mins and not all of the film in in there.
    I don't know if I have settings wrong on handbrake or what but I have to have this film edited and finished and turned into higher ups by tomorrow. I am so stressed out and just thought this would be a easy process.....guess I was wrong ha-ha

    Hi there, I initially used handbrake for the self same reason of converting footage on DVD before realising that MPEG Streamclip produces far higher quality output from the DVD.
    For info it's a free download from http://www.squared5.com/ though you will probably need the small ad-on from Apple $15 USD (I think?) and don't worry, it will tell you if it's required.
    I've had astonishingly good results from using MPEG Streamclip - it's a shame I'm not working on commission or else I could give up my day job!
    The settings I use in MPEG Streamclip to create the video footage as a .mov file use the options shown below:
    FILE > Export to Quicktime
    Compression > Apple DV - PAL
    Quality > 100%
    Frame size > 640 x 480 - Note: I used this for YouTube - you may want to set the resolution at 720 x 576 or higher for your own purposes.

  • Help with a school project please

    Finally got the code to compile without errors, but now it is giving me a null pointer exception and I can't see it (blind, maybe)
    Can someone help me see what I have done wrong?
    Exception:
    Exception in thread "main" java.lang.NullPointerException
    at Calc2.getInput(Calc2.java:38)
    at Calc2.main(Calc2.java:18)
    import java.util.*;
    public class Calc2 {
         static MyStack stack;
         public Calc2 () {
              stack = new MyStack();
         public static void main(String[]args) {
              for (int i=0; i<args.length; i++) {
                   if (testNext(i, args)){
                        getInput(i, args);
                   } else {
                        try {
                             startCalculation(i, args);
                        } catch (StackException exc) {
                             System.out.println("Stack Exception");
                        }//end try catch
                        try {
                             System.out.println(stack.peek());
                        } catch (StackException exc) {
                             System.out.println("Stack Exception");
                        }//end try catch
         } //end main
         public static void getInput(int i, String args) {
              try {
                   int num = Integer.parseInt(args);
                   stack.push(num);
              } catch (StackException exc) {
                   System.out.println("Stack Exception");
              }//end try catch
         }//end getInput
         public static boolean testNext(int i, String[]args) {
              if (args[i].startsWith("1")
                   ||args[i].startsWith("2")
                   ||args[i].startsWith("3")
                   ||args[i].startsWith("4")
                   ||args[i].startsWith("5")
                   ||args[i].startsWith("6")
                   ||args[i].startsWith("7")
                   ||args[i].startsWith("8")
                   ||args[i].startsWith("9")) {
                   return true;
              } else {
                   return false;
         }//end testNext
         public static void startCalculation(int i, String[]args) throws StackException {
              try {
                   String getB = (String)stack.pop();
                   String getA = (String)stack.pop();
                   int b = Integer.parseInt(getB);
                   int a = Integer.parseInt(getA);
                   int result;
                   if (args[i]=="+") {
                        result=a+b;
                        if (stack.isEmpty()==false)
                             stack.push(result);
                   } else if (args[i]=="-") {
                        result=a-b;
                        if (stack.isEmpty()==false)
                             stack.push(result);
                   } else if (args[i]=="x") {
                        result=a*b;
                        if (stack.isEmpty()==false)
                             stack.push(result);
                   } else if (args[i]=="/") {
                        result=a/b;
                        if (stack.isEmpty()==false)
                             stack.push(result);
                   } else {
                        throw new StackException("Invalid Exception");
                   }//end ifs
                   if (i > args.length && stack.isEmpty()==false) {
                        startCalculation(i++, args);
                   } else {
                        System.out.println(result);
                   }//end if
              } catch (StackException exc) {
                   System.out.println("Stack Exception");
              }//end try catch
         }//end startCalculation
    }//end Calc2
    Edited by: DilutedEgo on Oct 22, 2007 8:12 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Your stack is null. It only gets initialised inside the Calc2 constructor but since you never create a Calc2 object the stack will remain null.
    Also never use == to compare Strings, use the equals method instead.

  • Need help with my Pioneer dvd-rw dvr-115d. HLEP!!

    Hello i need help with my G4, i havent been useing it for a while and i started using it again. As i was trying to burn a DVD it didnt read my cd at all even if i put a DVD in there it dont read it just come right back out.. on my mac it shows that is there but not reading . what can i do????!!! i need help with this..
    PIONEER DVD-RW  DVR-115D:
      Firmware Revision:          1.18
      Interconnect:          ATAPI
      Burn Support:          Yes (Vendor Supported Drive)
      Profile Path:          /Library/DiscRecording/DeviceProfiles/PatchBurn-pioneerdvdrwdvr115d.drprof ile
      Cache:          2000 KB
      Reads DVD:          Yes
      CD-Write:          -R, -RW
      DVD-Write:          -R, -R DL, -RW, +R, +R DL, +RW
      Write Strategies:          CD-TAO, CD-SAO, CD-Raw, DVD-DAO
      Media:          Insert media and refresh to show available burn speeds
    this is what it say in the system profiler.
    Power PC Mac os x 10.5.8

    The new user account didn't work?
    Or, the firmware flash didn't work?
    I would try reconnecting the data ribbon. It is cramped and difficult to get to, but it may be some corrosion or a poor connection causing the issue.
    It's worth a try, as the DVR-115 is a good drive. They don't make them any more........
    You can find an optical drive installation video (on the following page) to help you with your efforts:
    http://eshop.macsales.com/installvideos/

  • High School highlight video (Widescreen or standard)

    I am making a high school football highlight video for college recruiters. The capture video is widescreen. Should I convert it to a 4:3 project or leave it 16:9. I am not sure if they will be using widescreen televisions.

    If the footage is already in widescreen, then keep it in widescreen. If they have a widescreen TV, great. If they don't no harm-no foul. Also, football is a sport that lends itself to widescreen viewing and you can cover more of the field with less wasted space, aka, no useless crowd above or below the field of play. Keep it widescreen, just make sure the DVD you make is an anamorphic DVD so that if they do have a widescreen TV that your video won't appear in the middle of a black frame.
    Good luck,
    -Brian

Maybe you are looking for

  • Does Adobe work with iPad? I do a lot of work for my business on my iPad but feel like certain sites don't load properly?

    I Use my iPad for most things as I'm on the go a lot. I don't know much about computers but seem to run into problems with accessing site that use adobe flash? Is there away round this with apple?

  • Problem with audio unit

    Hi, i've got some troubles with logic! Logic can't find my audio units, i've got a message which told me about midi delays issues(it's in french so i'm not sure about the translation)! I tried to reinstall it, but it's still blocked.....i don't know

  • Display On Boot Up

    Periodically, my screen will show a battery of multi-colored horizontal lines about i" by 1/16" all over the screen. I have to shut the power off completely for about an hour in order to be able to get rid of them and work. Suggestions?

  • HT201263 how to exit from recovery mode to normal mode

    i have trouble with my ipnone 4S 5.1.1.... recovery mode dan can't to normal mode...it always blang...when  i was restore from alway shown error 3491 or restor dan upgrading... Thank you max how to fixing error 3194?

  • Pre-staging FIM client in system image

    Hi, We are beginning to implement FIM 2010 R2 SP1 in our environment. I want to add the client install to our standard image - is there anything I should be aware of? I notice that one of the reg keys that is installed contains a GUID. Should I delet