Compact VHS Conversion Service

I have some old home movies on Compact VHS (a JVC GR-AXM670 if it makes a difference). I am running iMovies 08 on a PowerPC G5. I want to get the movies into iMovies but don't want the hassle or expense of getting what seems to be a complicated bit of equipment required to transfer the movies. Does anyone know of a service that will transfer the Compact VHS cassettes to a format that I can then use with iMovies?
And what format would that be? I see sights on the internet referring to all kinds of things like NTSC and DVD-R and who knows what. I almost sent the cassettes to one sight but luckily scrolled all the way down on their FAQs and found that their format was not compatible for the Mac. Can anyone help?

Mathew is on to something...
Even if you don't have an appropriate DV camera, I'll bet some one of your friends do. Ask around. You'd only need to borrow it for an afternoon, and you can buy blank tapes all over. Our local Walgreens and Longs drugstores have a big variety of tapes, typically an hour long.
What you will need to borrow is a camera that has a video and audio input (not every model has this). You'll also need the two appropriate cords: one to connect the Yellow-Red-White RCA connections on your VHS VCR to the camera's input jack and one to go from the camera's Firewire output to the Mac Firewire input. You may also need to borrow the User Manual to be sure that you are doing it right. On some cameras you don't need to actually record a tape, but I'd do it to keep a copy of your footage in an easy form to use again someday. If you don't own a DV camera now, I'll bet you'll have one in the future if the bug bites you like it has bitten most of us.

Similar Messages

  • Have old video tapes; compact VHS. Have camera with S-video out

    Have compact VHS tape archive. Have camera with S-video out & good VHS player/adapter with S-Video out. Also have old PC with dedicated hardware capture card/cable and Pinnacle Studio. Am considering starting over with purchasing iMac for editing. I could capture on the old PC and move files to iMac. If I want to do it all on iMac, what is the best way to capture and what do i need?

    TExcellent suggestion! Read about it, ordered it on Wednesday and I just captured a S-VHS-C through the box from my camera to my old iMovie 6.0.3 on my G4. Worked right out of the box as advertised. Now I can experiment a bit while I muse about that I7/27" iMac I'm going to buy. I also went to the Apple workshop on IMovie/iDVD. It's a long way from my old Pinnacle Studio.

  • BPEL and conversational services

    For some reason my earlier post failed. It threw up some weird error.
    I am building a BPEL which is composed of synchronous web services. The simplest of these business processes has a single synchronous web service call. The web service returns an array of java beans.
    1. My web service has been deployed on the oc4j. It is not a JAX-RPC service but an oracle J2EE web service. I used the endpoint in the properties for the webservice to create the partner link but it gives me "The downloade of the specified resource has failed" error.
    the endpoint url looks like this http://db2yg41:8888/expenseApp-ExpenseServices-context-root/ItmTypeDBService
    I also tried appending a ?wsdl at the end but that failed too.
    2. how do I assign a XML schema for the input and output variables of the Business process? My schemas are defined in a business services project in JDev.
    3. What is the best practise for modeling such business processes which are composed of such conversational services. I want to have minimum number of transformations.
    Should I have my conversational service accept XML or is it good to stick to java beans? I personally prefer having these web services accept and return java bean instances to avoid another transformation within the webservice.In that case how do I perform the transformation on the business process side?
    4.If I need to expose these business processes to the presentation layer, what is the best approach?
    Thanks,
    Jeevak

    Hi Edwin,
    I hope we are on the same note with what I meant by a conversational service, I meant either async/sync services, nothing more sophisticated than that.
    Here is what I am trying to implement
    1. I have the xml schemas for the input and output messages of the process. Some of these processes are complex involvign user tasks and tasklists which we can deal with later.
    2. The simplest one contains an invoke activity. The web service interacts with the toplink layer. Currently it just extracts the data from the toplink POJOs into java beans and returns an array of these beans. I would prefer returning an array of the POJOs unless it is better returning an xml doc.
    My concerns
    1. If I use xml docs for the synchronous service it would mean performing redundant transformations. What do you suggest is the best way to transform the xml docs into beans and back both in the process as well as in the service. I have read about orajaxb for oracle j2ee web services and xml facade within the BPEL. I want to reduce the number of transformations and the amount of code I need to write since time is an important consideration
    2. I am using the endpoint url provided by the web service properties in jdev. The problem is that the BPEL server is unable to locate this service that has been deployed in the standalone oc4j container. This is an immediate problem that I need to address.
    3. Isnt there a way to expose the business process through a facade layer, or should it always be invoked as a web service?
    Thank you.
    Jeevak

  • Getting desired resolution of the images created by Powerpoint conversion service using PictureRequest class

    I am using PictureRequest class to get the images of the presentation as,
    PictureRequest request = new PictureRequest(inStream, ".pptx", PictureFormat.Png, outStream);
    IAsyncResult result = request.BeginConvert(SPServiceContext.GetContext(siteCollection), null, null);
    request.EndConvert(result);
    After getting the response from the PictureRequest if I check the image size (in this case png) it has the resolution of 720x540. I want bigger resolution images. I searched all over the sharepoint central administration but could not find any setting related
    to Powerpoint conversion service which may allow to set the desired image resolution.
    Could you please anyone suggest where I can specify the required resolution?
    Many thanks in advance!

    Hi,
    According to your description, you want to convert PPT file to PNG file in a specific resolution.
    There is no such OOTB settings in PowerPoint conversion service can meet your requirement. In
    PictureRequest object, there is also no related method can set the resolution of the converting image.
    As a workaround, I would suggest you do the conversion outside SharePoint, there will be more options available to handle the properties of the converted images.
    The links below about with code demos about how to convert PowerPoint Slide to Image for your reference:
    http://www.free-power-point-templates.com/articles/c-code-to-convert-powerpoint-to-image/
    http://www.codeproject.com/Articles/10632/Export-of-PowerPoint-slides-to-high-quality-Bitmap
    Best regards
    Patrick Liang
    TechNet Community Support

  • Setting Image resolution of the images created by Powerpoint conversion service using PictureRequest class

    I am using PictureRequest class to get the images of the presentation as,
    PictureRequest request = new PictureRequest(inStream, ".pptx", PictureFormat.Png, outStream);
    IAsyncResult result = request.BeginConvert(SPServiceContext.GetContext(siteCollection), null, null);
    request.EndConvert(result);
    After getting the response from the PictureRequest if I check the image size (in this case png) it has the resolution of 720x540. I want bigger resolution images. I searched all over the sharepoint central administration but could not find any setting related
    to Powerpoint conversion service which may allow to set the desired image resolution.
    Could you please anyone suggest where I can specify the required resolution?
    Many thanks in advance!

    Hi,
    According to your description, you want to convert PPT file to PNG file in a specific resolution.
    There is no such OOTB settings in PowerPoint conversion service can meet your requirement. In
    PictureRequest object, there is also no related method can set the resolution of the converting image.
    As a workaround, I would suggest you do the conversion outside SharePoint, there will be more options available to handle the properties of the converted images.
    The links below about with code demos about how to convert PowerPoint Slide to Image for your reference:
    http://www.free-power-point-templates.com/articles/c-code-to-convert-powerpoint-to-image/
    http://www.codeproject.com/Articles/10632/Export-of-PowerPoint-slides-to-high-quality-Bitmap
    Best regards
    Patrick Liang
    TechNet Community Support

  • S-VHS conversion to digital using iMovie6

    Okay, when in doubt always, always, always consult the apple discussion boards. I have learned this over the last couple of years. Anyway, I am trying to convert a 2004 S-VHS tape to digital format using iMovie. I have the VCR and computer talking to each other, but the video is very choppy and irregular. Is this a setting problem? Or, perhaps, does iMovie 6 not support S-VHS conversions. Pretty frustrating considering all I need is a total of 1min. 30sec. of footage off this tape. Help!!! Jeff.

    Canopus makes great analog to digital converters. I purchased the ADVC-55 S-video or composite inputs to FireWire output. Works great not too expensive for semi-pro gear.

  • I have a number of old 3.5 floppy that i'd like to convert to a format that can be read by my iMAC. These are all Word documents for MAC that are as old as 20   years. Do you have suggestions other than the conversion services that are rather costly?

    I have a number of old 3.5 floppy that i'd like to convert to a format that can be read by my iMAC. These are all Word documents for MAC that are as old as 20   years. Do you have suggestions other than the conversion services that are rather costly?

    I don't think any conversions are needed, just get yourself an external USB 3.5" floppy drive and drag the documents onto your iMac's HD. You should be able to locate one on Ebay or maybe even Amazon. To open them you will need something that reads .doc files like Pages, MS Word for Mac etc..

  • I have tried to cancel my subscription since November last year. PLEASE CANCEL MY SUBSCRIPTION !!!! I trashed my credit card to avoid your bad service. I paid the subscription but I was unable to use your conversion service. RGattass

    I have tried to cancel my subscription since November last year. PLEASE CANCEL MY SUBSCRIPTION !!!! I trashed my credit card to avoid your bad service. I paid the subscription but I was unable to use your conversion service. RGattass

    We're all just users so can't do that but have you tried here? ---> Cancel your membership or subscription | Acrobat, Acrobat.com online services

  • I have paid my sub and still denied conversion services, why?

    I have paid my sub and still denied conversion services, why?

    Hi,
    Please let me know what kind error message you see.
    Are you trying to export your PDF file in Adobe Reader X or Reader XI or using web ui at https://exportpdf.acrobat.com?
    If you are using it in Reader please try to log in at the web site above with your Adobe ID and password.
    Thank you.
    Hisami

  • Jolt and conversational services

    Hi,
    We have some Tuxedo conversational services that we need to connect to
    from Weblogic. Does Jolt support access to conversational services, or is
    it limited to request/reply?
    Eric Green

    Our plan is to have the Weblogic/TUXEDO Connector (WTC) support the
    conversational APIs in a future release. They are being tested in beta
    now, but there is no guarantee at this time.
    Eric Green wrote:
    >
    Hi,
    We have some Tuxedo conversational services that we need to connect to
    from Weblogic. Does Jolt support access to conversational services, or is
    it limited to request/reply?
    Eric Green

  • Is Adobe abandoning on-line conversion service (PAID FOR!)

    Recent e-mail implied that on-line file conversion (for me,  primarily pdf to docx and back) was being abandoned and to remove your files.
    They also gave you a deadline for FILE REMOVAL from the system.  I PAY FOR THIS CAPABILITY!!!
    #1  Is this change true?  Or is your email badly phrased?
    #2  How in H*** do I get any Support?  After an hour of trying you have a very angry paying Customer!
    H Larry Elman,  DEHI    email [removed]     screen name here  ColLarryElman

    This is the Reader forum, and I think your question should go in the ExportPDF one,
    http://forums.adobe.com/community/exportpdf
    And you are not addressing Adobe in these forum, just fellow users. Who can usually give you faster and better service than Adobe.

  • Today several tries to ExportPDF from Adobe Reader X (10.1.4) to .docx file resulted only in the message "An error occurred while converting this file".  I never got a converted file although my paid-for subscription to this conversion service used to giv

    please help me get past the impasses of this error message & no conversion from pdf to docx

    Hi literary being,
    Is this happening with a single file?Did you try with different files?
    Choose Help > Check for Updates to make sure that you're using the latest version of Reader. You should have Reader 11.0.09.
    Try to convert via a web browser as well.You may logon to:https://cloud.acrobat.com/exportpdf with your Adobe id and password.
    Regards,
    Florence

  • Compact Flash conversion Lifedrive

    Hi everyone, I am new to this forum and apologise if this is the incorrect format.
    I love my Palm but I have a problem
    I have an issue on converting my Lifedrive to Compact Flash.card to prolong its life.
    I have followed the how to on Wiki I used an Apple Mac, purchased Copycatx and a 4 gb SanDisk Extreme III which is on the compatibility list of known cards that work...
    I used Copycatx to duplicate the Lifedrives Micro drive as per instruction,
    this I saved to my desktop.
    I then put the CF card in the card reader but it won’t transfer the image as the volume of the CF card at 3.74 GB is too small for the image at 3.81 GB.
    What am I doing wrong?
    I have duplicated the Lifedrives micro drive several times and the image volume is always the same at 3.81 GB.
    I tried the card straight out the box and later formatted it on FAT32
    No Joy!
    Could someone point me in the right direction please?
    Regards to All
    Ted
    Post relates to: LifeDrive
    Post relates to: LifeDrive

    The SanDisk Extreme III is too small to place the image on. The way memory works is even though you have a 4GB card it is actually a little smaller due to how the data is stored.  Outside of that unfortunately we do not support modifying the devices on this forum. I would suggest that you look at the Wiki that you got this information from and see if they have a forum of there own and see if they can help you.

  • VHS Conversion to iMovie for editing

    I have recently installed Elgato ( as shows in the Apple online store) eyeTV 250 Plus to be able to transfer VHS tapes to a digitial format...my problem is is seems to allow to iDVD and iPod, but not iMovie....and yet I have read this unit should /does allow storage in programmes other than the two mentioned.Does someone have an answer.I have tryed sharing from iDVD to iMovie, but that does not work.
    Can someone guide me.

    There are a several ways to do this.
    1) Your import will show up in the EyeTV recordings list. Right-click and select Export....
    Choose a format: You could pick h.264, DV, or up at the top of the list, you will see "for iMovie HD". (Do not use the one that says "for iMovie" - This is for older versions of iMovie before 1996). All of these will work. For simplicity, pick the one that says "for iMovie HD".
    Save this export to a place you can find it later (like your desktop) and then open iMovie 08 and select FILE/IMPORT.
    While the steps listed above work, I personally use a different workflow. I recommend you try the above first and see if you are satisfied with the picture. If not, come back and I will step you through a different procedure that requires additional software.

  • How to write Tuxedo service with conversational mode ?

    Is there anyone do me a favour and tell me how to write the conversational service
    ? I failed to use tpconnect to set up the converational communication channel
    since the returned error number from tpconnect is 6.
    Many Thanks !

    "huchacha" <[email protected]> wrote:
    >
    Is there anyone do me a favour and tell me how to write the conversational
    service
    ? I failed to use tpconnect to set up the converational communication
    channel
    since the returned error number from tpconnect is 6.
    Many Thanks !Hello,
    1. TPNOENT=6 (from atmi.h).
    2. After tpconnect (from Tuxedo docs):
    [TPENOENT] Cannot initiate a connection to svc
    because it does not exist or is not a conversational service.
    3. Check SERVER section in ubbconfig,
    for example (from Tuxedo docs):
    CONV = {Y | N} specifies whether or not the server
    is a conversational server.
    Connections can only be made to conversational servers,
    and rpc requests (via tpacall() or tpcall()) can only be made
    to non-conversational servers. The default is N.
    Best regards,
    Vladimir

Maybe you are looking for

  • Problem with multiple iPods on one computer

    I just got a new Ipod and since my computer's internet is down I'm using the computer my mother and brother use for their iPods. We each have our own user profile on the computer. However when I plugged my iPod into the computer for the first time it

  • How to connect my new iphone to ?

    hi

  • Drop box Cache Snow Leopard

    Hello all.How can I see what files are in my Drop box cache folder in Snow Leopard so that I can clean out the cache?Are there any other caches that I should clean out periodically?Is there a free program that will clean out my drop box files?What do

  • I forgot my security questions for iTunes

    I forgot my security questions

  • Can not print PDF files

    I have a 6520 printer and a Vista operating system. When I try to print a PFD file from documents a window  comes up telling me I need to install a printer. Everything else prints fine.