Video Capture Applet

Hi all, I wanted to write a code that allows me to capture video from my webcam and show me in the applet window. But the I have seen the webcam being activated but I can't see anything on the screen when I terminate the applet the camera switches of (diactivated). Please tell me the problems with applets? Basically I used a processor to capture the video and used it to produce a data source. I then used a player to play the data source. I have used createrelizedplayer method. If you need the code I will post it.
Thank you.

Hi Talha thank you for your prompt response. BTW, I removed all calls to system.exit(0) method and the error code changed. Also I was using the file protocol (file: as FILE:) so after I change everything, the error chnaged. I will post it below. To answer your questions:
-- Which OS are you using? Vista? (then there are little chances that you would succeed) - XP (with SP3)
-- Have you tried running the applet in Applet Viewer? - I tried IE and Firefox (I will try Applet viewer)
-- Are you sure your program is foolproof, i.e. Is is working as Application? - I am sorry I don't get you.
-- You can post your effort at code ( enclose it in tags) - You mean I should post my code. If you mean that I will post it after the erro message.
Thank you again.
------- the error message ------
java.security.AccessControlException: access denied (java.io.FilePermission \foo.avi read)
     at java.security.AccessControlContext.checkPermission(Unknown Source)
     at java.security.AccessController.checkPermission(Unknown Source)
     at java.lang.SecurityManager.checkPermission(Unknown Source)
     at java.lang.SecurityManager.checkRead(Unknown Source)
     at java.io.File.exists(Unknown Source)
     at com.sun.media.datasink.file.Handler.open(Handler.java:263)
     at JMFAppletCapture5.init(JMFAppletCapture5.java:108)
     at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
java.lang.NullPointerException
     at JMFAppletCapture5.start(JMFAppletCapture5.java:139)
     at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
Exception: java.lang.NullPointerException
------ my code----- the following code in init() method:
     MediaLocator videoMediaLocator = new MediaLocator("vfw:Microsoft WDM Image Capture (Win32):0");
     try{
     processor = Manager.createProcessor(videoMediaLocator);
     }catch (Exception e) { Stdout.logAndAbortException(e);}
     processor.configure();
     try{
     Thread.sleep(4000);
     } catch( Exception e ) { System.out.println( "Error:" + e ); }
     processor.setContentDescriptor(new
                  FileTypeDescriptor(FileTypeDescriptor.MSVIDEO));
     processor.realize();
     try{
     Thread.sleep(4000);
     } catch( Exception e ) { System.out.println( "Error:" + e ); }
     MediaLocator dest = new MediaLocator("FILE://foo.avi");
      DataSink filewriter = null;
      try {
          filewriter = Manager.createDataSink(processor.getDataOutput(), dest);
          filewriter.open();
      } catch (NoDataSinkException e) {
          e.printStackTrace();
      } catch (IOException e) {
          e.printStackTrace();
      } catch (SecurityException e) {
          e.printStackTrace();
---- and the following in start() method-----
     try{
     processor.start();
     }      catch (Exception e) { Stdout.logAndAbortException(e);}
     try {
          filewriter.start();
      } catch (IOException e) {
          e.printStackTrace();
     try{
     Thread.sleep(10000);
     } catch( Exception e ) { System.out.println( "Error:" + e ); }
     processor.stop();
     processor.close();
     filewriter.close();
------- the exception  java.lang.NullPointerException   was raised  by      processor.start();  statement. I think I should start the processor after the datasink.
Edited by: Zelalem on Jan 24, 2009 8:17 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Error Msg Prompted when exit a Video Capture applet

    I converted a sample Video Capture App to a applet, when i stoped capturing and exit, this massage prompted:
    "The instruction at '0X05a82f30' referernced memory at '0x05aa20f8', The memory could not be 'read'. Click on OK to ternimate the program".
    This app will write the captured video file onto local disk, but i've setted the security options in JMF Preference config.
    I just wonder why this error message occur?
    i'm now working on this applet for my JSP page, i want users can captrue pictures from the WebCam and then save as JPEG images.
    I realy appreciate it if any guys can give me some suggestion?

    I also writing a applet to do that. But I can work in application model. When I run it in browser . It throw out an error. Following is my code....
    FrameGrabbingControl fgc = (FrameGrabbingControl) player.getControl("javax.media.control.FrameGrabbingControl");
    tt.setText(fgc.toString()+"\r\n");
    Buffer buf = fgc.grabFrame();
    tt.append(buf.toString()+"\r\n");
    BufferToImage btoi = new BufferToImage((VideoFormat)buf.getFormat());
    tt.append(btoi.toString()+"\r\n");
    java.awt.image.BufferedImage img = (java.awt.image.BufferedImage)btoi.createImage(buf);
    tt.append(img.toString()+"\r\n");
    try {
    File file = new File("c:\\Testing.jpg");
    FileOutputStream out = new FileOutputStream(file);
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
    JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(img);
    param.setQuality(0.7f, false);
    encoder.setJPEGEncodeParam(param);
    //encoder.encode(buffImg);
    encoder.encode(img);
    out.close();
    } catch (Exception ex) {
    ex.printStackTrace();

  • Finally.... Video captured from applet in Vista!!

    Hello!
    Hurray!! finally I can see myself smiling and waving back in browser in Vista.
    I mentioned in another thread just a day earlier that I will post a new topic if I succeed in capturing from applets in Vista, so thats what I am doing.... This thread is all about how achieved it.
    I have seen many posts mentioning problems in capturing from applets in vista. I was also one of the sufferer. And most people including me blamed that on restricted sandbox of Vista. But surprisingly it was all about classpath.
    I think I mentioned in some earlier thread that the 'Java console' shows the classpath to be *"{JREHOME}/classes"* instead of the classpath specified in CLASSPATH environment variable. You can check that by pressing 's' which *'dumps system and deployment properties'* in the Java Console. You can check the classpath by noting the value of *"java.class.path"* field which for my case was"C:\\PROGRA~1\\Java\\jre6\\classes". This turned out to be the main problem. The applet was not accessing any classes from the real CLASSPATH instead it was considering the classpath to be jrehome/classes. So, now I had enough hint what to do next. I simply created a folder 'classes' in {JREHOME} and copied the jmf registry files to that folder. By registry files I mean *'jmf.properties'* and *'jmf.properties.orig'* files in *'{JMF Install}/lib'* folder (actually i don't which among them has got some thing to do with the registry but I copied them both). So, after doing this, all my capture applets, whether signed or unsigned started running. Earlier they all were throwing *"java.lang.RuntimeException: No permission to capture from applets"* exception even after I have allowed capture from applets in JMF registry. That was perhaps not taking affect because of classpath issues. So, thats the story.... if someone faces the same problem he can use this workaround or you can say hack ;-)
    Some questions which can be asked from me would be:
    1- Did you set your CLASSPATH environment variable correctly?
    ans: Yes, infact all my jmf applications were running correctly, the problem was only with the applets.
    2- What classpath other systems (e.g. XP) mention in the Java console ?
    ans: surprisingly, the same classpath that Vista mentions i.e. {JREHOME}/classes. I tested on XP-SP3, but it supposedly had access to the real CLASSPATH also.
    3- Is this problem really Vista specific?
    ans: Can't say... but it can be. It maybe the case that Vista does not allow access to real CLASSPATH, but this problem can easily be my system specific, it would be called a general vista problem if this happens on all Vista systems, I need volunteers for this test. captfoss, can you please test this on your system? :)
    4- Is this problem JMF specific?
    ans: Chances are low. I am going to test this by making my own test library and adding it to classpath and then try to access it via applet. If this fails then this problem is not JMF specific.
    Drawbacks of this work around:
    1- This can be a pain for ordinary users , copying registry files from JMF/lib to JRE/classes.
    2- Whatever you change in JMF registry would not be effective to the applets. As the old registry files are to be replaced with new registry files every time JMF registry is changed for changes to take effect in applets.
    The real big question:
    How can we force Vista to look in the real CLASSPATH? this is the real question, if this can be done just by changing some settings then all this workaround is useless :) I am looking forward to the answer of this question.....
    captfoss, I would highly appreciate your comments.
    Thanks for reading this rather long post.... :)
    Thanks!

    A couple of comments here...the answer is, in fact, no, you didn't set your classpath correctly. One, you're probably using a JAR file to run your applet from (I'm not an applet programmer but I do believe that a JAR is required) which do not use the environment's classpath, they use their manifest classpath. No, the applet was not jared.
    Second, I believe that the browser itself specifies its own classpath, which you cannot modify. I believe this would be considered a security feature...Both IE7 and firefox3 fail.
    "You have little control over the CLASSPATH used by a browser for an Applet"
    [http://mindprod.com/jgloss/classpath.html]
    Ok this maybe the reason, I will go through the link....
    2- What classpath other systems (e.g. XP) mention in the Java console ?
    ans: surprisingly, the same classpath that Vista mentions i.e. {JREHOME}/classes. I tested on XP-SP3, but it supposedly had access to the real CLASSPATH also. There isn't a "real" CLASSPATH, there is just the classpath stored as an environmental variable. It's no more or less real than the one in the browser.Thats what I thought.... but I think {JREHOME}/classes is the default class path used by the jre whether we set any CLASSPATH variable or not it would be there, something of that sort.....
    Lots of possibilities, but my best guess is that Vista doesn't let code running in the browser read environmental variables.Yes, I fully agree with this. I think I should file a bug report.
    4- Is this problem JMF specific?
    ans: Chances are low. I am going to test this by making my own test library and adding it to classpath and then try to access it via applet. If this fails then this problem is not JMF specific. Definately not. It would apply to any code that wants to access something on the classpath. You are right... as I said I would test it, I tested by making a small library, added it to classpath, made an application and an applet. As expected, the aplication worked while the applet failed.
    Any application with a custom classpath would be affected.I don't understand what you mean here, do you mean 'Class-path' header in jar manifest?
    I like the "installation requirement" part. I'd suggest looking into that. Alternately, there may be something in the security settings to allow access to environmental variables.I will try to look into both.
    I just tried this statement in applet:
    System.out.println( System.getProperty( "java.class.path" ) );It threw this exception:
    Exception: java.security.AccessControlException: access denied (java.util.PropertyPermission java.class.path read)
    I don't know what conclusion should I draw from this... this does mean applet has no right to know what the classpath is.... but this doesn't mean even jre plugin responsible for running applet does not know what the classpath is :)
    Finally, I want to say that due to some problems I could not post earlier, and I may not post for few more days. But I appreciate your comments and would appreciate more of them.
    Thanks!

  • How to display live video captured by a webcam on another computer?

    I am now writing a program to display live video captured by a webcam on another computer which is in the same network and I need to make it display on a applet page.
    I have already figured out how to capture live video on my own computer and display it on applet.(thank for people in Java forum). But for a webcam which located on another computer in the same network,what should I do? what technique do I need to achieve that?
    can anyone help me?
    Thank you very much

    Hi AbSoiLoki,
    Thank you for your reply. I have been able to locate a couple of different options here for you to try. There is a previous post for a different printer that is having the same issue with the printer mapping a Z:folder.
    The link here will direct you to a post on the HP Forums with some trouble shooting steps for you to try.  Click Here.
    I have also included another document on How to stop printers from grabbing drive letters, Click Here,
    Please let me know if this has been able to help you resolve the issue.
    I worked on behalf of HP

  • Pinnacle Video Capture for Mac

    After talking with a bunch of salesmen (considering getting a DvD writer), I took the advice of someone in the Apple Store and bought a Pinnacle Video Capture for Mac to copy my laserdiscs. It was $100 before tax, and didn't do stuff I don't plan on doing anyway. I did spend another $25 to get an S-video cable.
    I installed the software and connected it up to my LD. I started capturing the movie, and selected S-Video (although in the small window they showed, I didn't see any difference between that and video out. I selected a max time from a limited selection, and let it record.
    After a while, I went downstairs and saw that the audio and video were not synchronized at all. I let it continue.
    After a while I came down again, and the movie was finished, so I stopped it. I found the MP4 - it was in the iTunes movie directory, and played it in iTunes. I fast-forwarded it to near the end, the voice and video were way off-set.
    I haven't tried burning this yet.
    Quicktime player doesn't think this is a valid movie file. I selected "open with" and "other" and the recommended applications had iMovie greyed out.
    Why in the world would the audio and video record at different speeds?
    Do I have to buy software to edit the movie down to the correct size?
    My Mac has:
    Model Name: iMac
    Model Identifier: iMac7,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.8 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 2 GB
    Bus Speed: 800 MHz
    Boot ROM Version: IM71.007A.B03
    SMC Version: 1.21f4
    I noticed the Pinacle Video Capture program was still running, so I tried to quit it, and got a window asking for my administrator ID and passsword to allow Pinnacle Video Capture to make changes. Why?

    The audio drifted out of sync because the Dazzle doesn't support locked audio. For short videos (say, under 10 minutes) this won't be very noticeable but when you capture longer videos it becomes progressively worse over time.
    What do you want to do with your Laserdisk copies? Watch them on your iPod? Edit and/or burn to DVD?
    A device like the Canopus ADVC-110 will do the video/audio conversion properly, keeping the audio and video in sync regardless of the length of your video. It converts to DV, not to MP4, and you would use it with iMovie or Final Cut (not iTunes). However you can export your video from iMovie or Final Cut to iPod/AppleTV formats.
    The Dazzle device will not work directly with iMovie or Final Cut.
    ps. If all you really want to do is transfer your Laserdisc videos to DVDs, it will be a whole lot faster & simpler to get a DVD player/recorder that has analog inputs and record directly to DVDs. There are many brands & models to choose from and many good ones are as inexpensive as the $100 you spent on the Pinnacle converter.

  • Elgato video capture versus digital 8 camcorder to import hi 8 movies

    Hi!
    I have hi 8 video tapes which i want to import into my MacBook.
    I would like to work on them with iMovie 09, cut them, set titles etc. put music on and so on.
    Earlier I plugged my hi 8 camcorder into my panasonic DMR E85H dvd recorder with built in hdd.
    Then i importet them via handbrake into my MacBook.
    Then i importet them into iMovie 08 an did some cutting and so on.
    Then i recognized, that there where horizontal interferences in the movie.
    On the dvds the video is ok!
    It doesn´t matter if i play the videos in Quicktime or in iTunes or iMovie.
    If i would use a Elgato Video Capture to import or a digital 8 camcorder to import the videos to my MacBook would i be able to get a better result?
    Which one should i prefer - i have to buy each of them!
    Would the size of the camcorder-imported videos be bigger then with the Elgato device?
    Now i´m using iMovie 09.
    Thanks a lot for helping me out!

    Based on your comments about horizontal interferences, it may be that you are seeing interlace artifacts. The solution may be to deinterlace the clips.
    You might try checking the settings in handbrake to deinterlace.
    You might also take the clip you have produced in HB and deinterlacing using a free tool like MPEG Streamclip or JES Deinterlacer.
    Your MPEG2 on DVD is already compressed from the original on tape. Then HandBrake decompresses and recompresses it to h.264. You generally want to cut out compression steps in your workflow whenever possible, because each generation of compression will introduce noise and loss.
    You could also reimport from DVD using MPEG Streamclip (and the Apple QuickTime MPEG2 Playback Component). You could deinterlace at this step if needed.
    You could certainly import through a camcorder with passthru capability. It will be DV which will be a very high data rate and potentially high quality, but it will never be higher quality than the underlying analog material. But you will have eliminated a compression step so you will be closer to the original.
    ElGato products will certainly work as well. I use the ElGato EyeTV hybrid to capture from a VHS Deck, as well as to record high definition TV shows. My ElGato will capture to MPEG2, although the newer models may capture directly to MPEG4 (not sure). You would then use the ElGato software to export to iMovie in an editable format such as h.264 or Apple Intermediate Codec.

  • Detecting Video Capture Devices without Installing JMF

    Hi All,
    I want to detect the video capture devices, without installing the JMF.
    I had included the jmf (windows version) in lib path in netbeans ide. I am able to detect the audio capture device. But unable to detect the video capture devices. But if I install the JMF, I am able to detect the Video Capture devices in My system. Can anyone help me?
    Thanks,
    Vinoth Kumar.

    YES! Please take a look at SIP Communicator project. They have all what u want.
    The main idea is copy all .dll files to System or System32 (Please check files which JMF will copy to ur computer and where).
    U need to have jmf.jar and sound.jar too ( maybe more) in your computer.
    Your program should have DirectSoundAuto.java, JavaSoundAuto.java, JavaSoundDetector.java, JMFInit.java. Those files are in JMStudio source code. They are used to detect all capture devices and register it to JMF, but wait !!! where they will be saved? In order to save information about capture devices which are detected, you should create "jmf.properties" file in the same location with jmf.jar.Therefore, u should modify the JMFInit.java so it can check if the "jmf.properties" exists. If it's not, you have to create it.
    Check SIP Communicator at Folder "media" then "device". They have modified those files I mentioned above and created some new files to SC can detect more devices.
    Edited by: tamngminh on Sep 16, 2008 9:50 AM

  • Video capture driver for MSI GeForce 2 Pro video card

    Hi,
     I am in need of the nVidia WDM video capture driver for my Geforce 2 Pro video card. Model #M-8831. I was able to download it from the MSI/TW website over a year ago just fine. My computer crashed from a game bug a couple of months ago and MSI/TW does not list the capture driver I need any longer. I did email the company asking for help with no response back yet (after 2 weeks). You people may be my last hope.
     I do have the cd that came with the video card, but I've never been able to install the capture driver from it. There is a button to install it, but it never gets loaded. I've tried browsing the cd and also tried installing it using the windows wizards with zero results. My only successful install was from the MSI home website.
     If you need more information, please let me know.
     Thank you,
     Bruce ?(

    If you followed the second link it says this:
    Windows XP/2000/Me/98SE - WDM Driver v1.22
    Version: 1.22
    File Size: 1.1 MB
    Release Date: December 9, 2002
    Downloads
    » Primary Download Site «
    » Mirror Site 1
    » Mirror Site 2
    » Mirror Site 3
    Release Highlights:
    First stand-alone WDM driver release for Personal Cinema and VIVO-enabled products.
    Right there at the end it says Release Highlights and says specifically that it's what you want...
    Read my man, read...
    Cheers!! 8)

  • Video capture Cables with MSI StarForce 822 GeForce 3!

    I have the VT64D and I woiuld very much like to know where to find the cables for this card, I need the A/V Cables... as I would like to have the full benefit of sound as well...
    If anybody has this calbe/breakout box I would be Extremely interested in purchasing it...
    Thanks,
    Marc
    PS: Its the second revision of Starforce 8822

    If you have the Video Capture Driver installed then the video capture program should see it. On MSI site version 1.16 of the driver is available for download.
    If you still have problems (e.g. too many frames lost) you can try using Virtual VCR (worked best in my case).

  • Video Capture Problems HELP!

    Ok i just bought a MSI GeForce4 Ti4200-VTD8X, Wich got Tv_Out + Video_in
    With the card i got a Tv_out/Video_in connecter to plug in the card, now the problem seems to come, i plug my S-video cable behind my Tv_out/Video_in connecter (wich of course is connectet to my graphics adapter) and the other end of the S-video cable into a SCART Adapter wich i plug into the scart output on my VCR, but when i start any video capture software, it just says no device connectet plz HELP me!  :(

    Never mind, got it working all by myself now

  • How to connect a video capture device to Satellite M30X 127

    I'm going around in circles trying to find a video capture device that will function with a laptop and would be grateful for advice. By way of example, I'm now looking at the 'Canopus ADVC-110', although still looking around (but not Pinnacle, who seem to have a terrible reputation for capture items).
    Problems include:
    1. Main problem is - many video capture external devices require a 'line-in' to PC for good quality audio transfer. This laptop doesn't have a line in, only the mike and headphone jacks. In addition, I've also tried a few RCA pins in the 3.5mm microphone/headphones jack and they were too small. How to solve the problem of getting audio from vcr to my PC?
    2. The ADVC-110 connects to the PC via Firewire (and S-video), but is a SIX-pin type. M30X is a FOUR-pin type. Are there adapters available?
    3. Some capture programmes seem to require huge capacity of RAM. Is a laptop going to be suitable to do the job? (I simply want to capture old vhs tapes from vcr to PC, then burn to DVD with Nero 7 or similar).
    Thanks in advance!

    Hello
    You are right! You must use external device for signal transfer to your notebook. I dont know where you have this info but I have good experiences with Pinnacle product. For data transfer I have used USB port.
    'Canopus ADVC-110 is not known to me but I dont see any reason why this should not work well. Use delivered software for video capturing and there should not be any problem.
    Only thing is that after recording the whole video material must be prepared for burning and unit need a lot of power to do this well und fast. When you buy this and want to use on right way I recommend you to expand RAM to 1GB.
    Compatible memory modules for your Satellite M30x are:
    PC2700 512MB (PA3312U-1M51)
    PC2700 1024MB (PA3313U-1M1G)
    Bye

  • Does the 6600GT-VTD128 support video capture?

    Hi,
    I recently purchased an MSI 6600GT-VTD128 video card.  The product information seems to suggest that the card has video input capabilities, and there is an adapter that plugs into the card that has a number of connections, one of which is labeled S-Video in.  However, I haven't been able to get any video capture to work.
    Does the card actually support this functionality?  If not, what are the video input connections for?  If so, is there some documentation as to how to set it up?  
    So far, I tried installing the video capture drivers that come with the card.  I checked the manual.  I checked the MSI web site FAQs.  And I searched the forums.
    Any help would be greatly appreciated.
    Thanks,
    Daniel

    Thanks Richard.  Yes I do have a breakout cable like that.  Actually, I described it in my original message.  So, I am guessing from your message that you believe that the card should have the capability to capture video.  
    In my original message, I asked if there was any documentation on setting up the card for video capture.  The manual does not describe the procedure, nor does the MSI web site.  
    There are drivers on the CD that claim to be for video capture, but they had no effect when I installed them.  In fact, there appears to be no way to tell whether the drivers were actually installed successfully.
    If anyone out there has successfully used this card for video capture, please let me know.

  • TV@ Plus, what video capture settings to use?

     I have a TV@ Plus and am unsure what video capture settings to use. I've had it for several months and solved my audio problems and need to know what Video Input Format, Capture Format (Profile), Capture - Size, Quality, Bit Rate and Audio Format settings to use. Should I use the same settings for all input sources or do I use different settings for CATV and S-video inputs? It seems to be OK with my current settings as far as capture and playback goes, I'm OK on the hardware part but with tech detatails I'm a bit  .
     I will be using it to capture from CATV, DVD and VCR input sources for later recording to DVD's. I use a GoDVD! CT-2 connected to the S-video input for recording Macrovision protected media to the HDD.
     My computer sound is monitor mounted stereo speakers.
     Thanks in advance for any helpful replies.

    Quote from: HenryW on 12-September-06, 04:25:48
    I have a TV@ Plus and am unsure what video capture settings to use. I've had it for several months and solved my audio problems and need to know what Video Input Format, Capture Format (Profile), Capture - Size, Quality, Bit Rate and Audio Format settings to use.
    I already had transferred and converted some of my old VHS and VCD movie collections into DVDs (using Composite Input).
    The higher the bit rate the better quality video output you will have - but bigger file size.
    To give you an example:
    A 2 hour video captured on MPEG set at 4000/bps will be translated it to 3.58GB. More than enough to be written on a 4.7 DVD.
    For audio bit rates, you can choose from 128/bps to 224/bps. As for me I set it to 224/bps. Again the bigger bit rates the better audio output. And don't forget to slide up the audio record level to 100%. That will give you a better and clearer recorded audio output.

  • How can I get Hi8 video captured in NTSC Standard, to display as 4:3 when DVD is played on TV?

    I have been capturing Hi8 tapes of our family, using a Sony analog-to-digital converter and Adobe Premier 10's NTSC Standard (4:3) preset. However, when I use Premiere Elements 10 to burn the digital files to DVDs and then play them on a Sony DVD player and Bravia flat-panel TV, the video is distorted in width automatically by the Wide Zoom mode. The TV cannot be configured to display the frames in the Normal Mode because the resolution is 720p, so the images cannot be viewed with the original 4:3 frame aspect ratio.
    After much experimentation, I tried capturing a tape in the NTSC Wide (16:9) preset. When I started to burn the AVI file to a DVD, I got a warning that I was using the wrong format, and the choice to correct the format.  I chose NO, and then burned the DVD. To my surprise, it did display on the TV without horizontal stretch, and the images did not appear to have been noticeably degraded.
    I would very much appreciate knowing if there is some way for me to go back now and have Premiere Elements 10 somehow reformat all of the Hi8 tapes I captured using the NTSC Standard preset, so that I don't have to recapture them, but can simply reformat them and burn them to DVD's that can be displayed on the TV without being distorted?

    Thanks for replying Steve.  I've been using a Sony DVMC-DA2, an analog-to- digital media converter which I was advised is used by people converting media professionally. I've been using an S-Video cable to connect it to my Sony Hi8 video camera (Model CCD-TR101), which was considered to be a high-end camera, back in the day (1992). The converter is connected to my Windows 7 computer with an IEEE 1394, "FireWire" cable. I'm not sure how I would check the format into which the Hi8 video is being converted, but I've followed the Adobe Premiere 10 Video Tutorial and configured the capture preset to the NTSC Standard (4:3), which is the one recommended for DV cameras. I couldn't find any advice specifically explaining how to configure the preset when converting analog Hi8 to digital.
    In the Premiere Elements 10 editing software itself, the video images burned on a DVD are not distorted, and the quality of the video images during editing looks to be every bit as good as the camera could record.
    When I started showing the DVD's to my family, however, I was very disappointed to discover that everything looked stretched in the horizontal direction. I have since studied the configuring of frame aspect ratio modes (Normal, Zoom, Wide Zoom and Full) described in the Sony Bravia TV's instruction manual, in detail. And, I have tried every conceivable combination of the picture and frame settings to see if I could "unstretch' the video images. No, luck. It was then that I came across a footnote that indicated that the Normal mode was not available for video resolutions of 720p, 1080 and higher. Unfortunately, the NTSC Standard preset indicates that it does capture DV in images that have 720 horizontal pixels by 480 vertical pixels.
    When I view the Hi8 burned to DVD's on other computers, using Windows Media Player and Video Lan, they are not distorted. In fact, they look so good that I'm just about ready to dedicate my laptop as the DVD player for my TV set!  It was while contemplating whether there might be a way to avoid doing this, that it occured to me to try capturing some Hi8 tape using the NTSC Wide Screen preset option. My half-formed idea was that, since the ratio of pixel width to pixel height in the Standard preset was smaller than with the Widescreen preset, using the latter to capture an analog video image might either (1) expand the width of the overall image much farther, and cause grotesque distortion, or (2) squash the width of the overall image, so that it looked normal. I can't pretend to have known what I was doing, since I don't understand video recording technology, but it also occured to me that the Widescreen preset might degrade the resolution, so that it was somehow no longer 720p, and thereby possibly circumvent the Sony lockout of the Normal Mode for these DVD's. Whatever it did, capturing Hi8 video with the NTSC Widescreen preset did, indeed, reduce the width of the frames appearing on the TV Screen, so that they apperared normal.
    The question with which I'm now wrestling is whether to go back and re-capture all of the Hi8 tapes, with the NTSC Widescreen preset, that I had already captured with the NTSC Standard preset - a big job. The warning window that popped-up when I prepared to burn the test video captured with the Widescreen preset gave me the option of correcting my "mistaken" choice of capture preset. I declined, and was rewarded with an undistorted video image. Which raises the possibility that, somewhere in Premiere Elements 10, there may be the capability of invoking that same pop-up window and modifying what the software considers to be the "correct," Standard preset to the Widescreen preset,so that I can change the formatting for all of the HI8 tapes I've already captured, so that they can be burned to DVD's and viewed in their proper frame aspect ration.
    This has been a long-winded follow-up to your initial answer to my question, but I would very much appreciate any further suggestions.
    Many thanks.  Paul

  • Advice Needed for Video Capture Device

    Hi,
    I'm looking to buy a USB (or Firewire if they exist) video capture device that can take S-Video and composite connections. Could someone recommend me best one under $150 that is compatible with Snow Leopard? Also, and more importantly, does anyone know if it is possible to capture the signal via Quicktime Pro or Final Cut Pro rather than bundled third party software.
    Thanks!

    I used the predecessor to the Canopus ADVC55 to load VHS tapes into a mac.  As I recall I brought the firewire signal into iMovie (could have been Final Cut Pro too, as I had both on the system). Here are the specs:  http://www.grassvalley.com/products/advc55 .     Also some comments on it at http://www.amazon.com/Hardware-ADVC-55-d-Converter-Ntsc/dp/B000HGVZG0/ref=sr_1_2 ?ie=UTF8&qid=1323954590&sr=8-2   Here's another source to buy it: http://www.bhphotovideo.com/c/product/312315-REG/Grass_Valley_602005_ADVC_55_Ana log_to_Digital.html .
    They also make an ADVCmini, which I haven't used, which is probably less expensive, with specs at http://www.grassvalley.com/products/advcmini

Maybe you are looking for

  • Receiver File Name with date

    Hi @, I have a requirement where I wanted to genereate the recevier file name as TestYYYYMMDD.txt format. Note that in Receiver target structure date is not coming and output file also we dont require date data. I tried to put the Date root node and

  • Passing Script variable to Package variable, ultimately used as fileName

    Following an excellent post by Geplaatst door Joost, I put together a script which SHOULD populate a package variable, then use that variable as a file name. The Script code is as follows: public class ScriptMain : UserComponent string iScriptVar; pu

  • Built in flash doesn´t pop up

    Hello, I have an EOS Rebel XS camera. The built in flash isn´t opening and teh follow message appear: " Error 05     The built-in flash´s auto pop-up was obstructed. Turn de power switch to <OFF> and <ON> again." I´ve tryed several times with no resu

  • How to delete CUIC Report Definition

    I created a handful of reports which all use the same report definition on a premium CUIC system, then did the export/import shuffle onto a crippled (license-wise) CUIC system. Then I forgot a custom footer formula so went back and updated, export/im

  • Network a Windows to an Emac

    Hi I want to network a windows based computer to my Emac. It's a Pentium II (333Mhz) running Windows XP. I am running OS 10.3.9 on my Emac and it is connected to the net via ADSL by ethernet. I'd like to be able to run the Windows computer to access