element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      • Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
element14's The Ben Heck Show
  • Challenges & Projects
  • element14 presents
  • element14's The Ben Heck Show
  • More
  • Cancel
element14's The Ben Heck Show
Forum RPi Video CamCorder ???
  • Blog
  • Forum
  • Documents
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join element14's The Ben Heck Show to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 7 replies
  • Subscribers 30 subscribers
  • Views 567 views
  • Users 0 members are here
  • build
Related

RPi Video CamCorder ???

Former Member
Former Member over 12 years ago

Ben

I saw your show for the very first time today, and have been completely blown away by your 3D printer...

At 61 years old I have tried to stay up with technology but it changes faster than I do...l OH WELL..

I am looking for a way to use an old vhs camcorder ... you know the huge ones... and gut it .. use the

existing camera, power, and controls... and a Pi and have a DV recorder !!!!

The old VHS Camcorders have the stibility that I am looking for But I dont have 3K to spend...

Any suggestions on where to get info on what video capture programs are available for the Pi.. and

Building Ideas  ( would be a great show... )

Thanks Gregg

  • Sign in to reply
  • Cancel
  • colecago
    0 colecago over 12 years ago

    I am doing something similar for my Makerfaire project using the pcDuino (competitor cheap linux board), and I haven't found any real good ways to do this.  You can use Python to access the IO and then use SimpleCV and a webcam to do still pictures and to supposedly do video without sound, though I can't seem to get the video to work, some codec issue.  It all turns out green, which is weird because it works somewhat by saving successive pictures to a video stream, and all my images look good, but the video is green. 

     

    Anyways, right now I am going down the road of using Python to run a command line version of Mencoder.  The sticking point right now, is I don't know how to stop the recording as I typically hit CTL + C to end the recording in the terminal, but I don't think my script can pass that command or cancel the running process?  Not really sure, I've never really used Python before.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • colecago
    0 colecago over 12 years ago in reply to colecago

    Also, for camera, I'm not sure about the Raspberry Pi cam, but UVC compatible webcams support USB Video Class and are linux compatible.  I found a cheap MS one on Amazon for like $18.

     

    Also for software, some suggested PyFFmpeg.  I'm going to try that route for a bit.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • colecago
    0 colecago over 12 years ago

    Okay, some luck using avconv

     

    here is a python script that will take video until you hit a key then terminate the subprocess.

     

    from subprocess import *

    import sys

     

    avconv_proc = Popen(

         [

          'avconv',

          '-f'','video4linux2',

          '-r','15',

          '-video_size','hd480',

          'i','/dev/video0',

          'test.avi',

         ],

         )

    raw_input()

    avconv_proc.terminate()

     

    Have not tried it with any audio, I think avconv can do that, not sure though, I don't have any audio input on this webcam. My one coming in the mail will. Need to add the ability to take pictures as well (much easier), add in time-stamping the file names, then tie into the GPIO.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 12 years ago in reply to colecago

    Sorry I haven't replied before now but I have been busy editing sermons for our church radio station.

    I have several old VHS Camcorders.. The old big shoulder mounts... I need to find the pinoust of my cams and how they connect...

    I think your problem sounds like you are missing the RED and BLUE outputs from the cam.

    I have a good friend who knows python well.. The CTL+C could be accomplished by retroing an old bluetooth keyboard, loose the keys and solder button in there place... Let me know how you fair. I will share any thing that I find out..

    I will be quit busy over the next few weeks so be patient...

    Thanks

    Gregg

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • colecago
    0 colecago over 12 years ago in reply to Former Member

    Oh, CTL+C thing is solved, I call .terminate() and it does a similar action.  Later this week I'll try and tie the controlling into the GPIO on the pcDuino.  I also have the reflective sensors, but am wary of shining invisible light in my eyes o_0

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 12 years ago

    i have used the program motion (long before Ben mentioned it) to control a webcam on my RPI.  Everything can be done from the command line. Check it out.

     

    sudo apt-get install motion.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 12 years ago in reply to Former Member

    Found a short term solution.... until I can build something better

    I have an old ASUS tablet that runs XP ( dirty word ) but it also will use my VC500

    USB video adaptor. gutted the vhs side of the cam and installed the vc500 directly.

    I have yet to plug into the pi usb to see if it will accept it... I have a friend writing code for the

    pi ... still tring to solve the driver issue..... if it works I will have a 128 gig sd card with all

    programing on it, and it will all fit in the camcorder... will keep you posted...

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube