Ubuntu Multimedia :: How Do I Capture Video In 10.04 Lucid

May 4, 2010

How do I capture video from my JVC GR-DF470 MiniDV camera into 10.04 Lucid.PiViTi looks good for an editing app, and I've installed OpenShot as well, but neither have a way of capturing the video from a camera. I used Kino previously in 8.04 Hardy, but it was buggy at best in 9.10 Karmic; I've just installed it in 10.04, but capture keeps stopping after 2 or 3 seconds. I also tried kdenlive, but the audio capture has a lot of 'noise' that is louder than the voices on the tape, and once it finishes capturing video, it doesn't display a 'Save' dialogue as it is supposed to - so that wasn't very successful either.So what can I use to capture video from a MiniDV Camera via Firewire.

View 9 Replies


ADVERTISEMENT

Ubuntu Multimedia :: Messy Video Playback Also Appears When Use Cheese To Capture Video With My Webcam

Feb 26, 2010

video playback is like I have applied a blueish sepia filter over it. And this is just the playback from totem player or mplayer, and not the playback from ..... (and generally online streaming) - this works just fine. this messy video playback also appears when I use cheese to capture video with my webcam. Note that the preview picture of the video file on nautilus has the natural colours it should have.

at first when I installed the os this particular problem didn't exist, but it came up the time I decided to follow the "comprehensive multimedia guide". So now I have all the pros of following the guide, but this is a major con...

View 3 Replies View Related

Ubuntu Multimedia :: Softwoare For Capture Video From DVD?

Mar 27, 2010

I have created several DVDs from my camcorder (sony handycam DCR-HC21 NTSC); however, the recordings are too long. I would like to capture smaller segments of these and load them online to share with family and friends.I would like to know what is the most recommended software for this task. I am running Ubuntu 9.10.I would have done this by using a firewire cable directly attached from the camcorder to my laptop, but my laptop has only USB ports. So I ended up creating DVDs using an stand alone Video Recordable DVD Drive.

View 1 Replies View Related

Ubuntu Multimedia :: Video Capture Using Mencoder?

Sep 29, 2010

I am working in a script I have, to capture video with sound from my capture board, wich is a clone of the pico2000. This script was working in Ubuntu 9.10 untill I reformated my machine and instaled the Ubuntu 10.10, 64 bits. The machine is an AMD Athlon II, 2.6GHz with 3 GBytes of Ram. The former script was:

Code:
#!/bin/bash
clear
SERVICE="mencoder"
MOVIE=$(date +"%H%M")

[Code].....

View 1 Replies View Related

Ubuntu Multimedia :: Guvcview Won't Capture Video?

Dec 3, 2010

This is on Karmic Koala 9.10. The video displays fine via guvcview using a Logitech webcam. The trouble is the capturing of the video. With .AVI, I've tried different video formats (MPEG-4, flash, etc.) and none of them will play. The generated .avi file seems to grow with data, but the result is just unplayable -- it just hangs, thinking it's playing. Is there a troubleshooting page or something to figure out what the problem I'm having with guvcviewer is?

View 1 Replies View Related

Ubuntu Multimedia :: Get A Usb Pinnacle DVC 101 To Capture Video?

Sep 1, 2011

I'm using natty. is there any way to get a Pinnacle DVC 101 to capture video from composite source on Ubuntu Natty? it seems that when new releases break functionality they often are never fixed.

I'm also unaware of a simple GUI application to use in order to capture the video. It would need start and stop features.

View 3 Replies View Related

Ubuntu Multimedia :: Video Capture - ATI All-In-Wonder 2006 AGP With GATOS?

Jan 20, 2010

As a TOTAL noob to Linux setting up my ATI All-In-Wonder 2006 AGP card with GATOS to allow me to transfer old video tapes to my computer (for further editing to DVD). I have Ubuntu 9.10 loaded and the relevant link for the GATOS stuff is:[URL]..

View 2 Replies View Related

Ubuntu Multimedia :: GYachE Improved V.1.1.48 Video Capture?

Jun 14, 2010

I use Ubuntu 10.04 in my HP 6530s notebook(2.0 C2duo1GB RAM, 512MB video). Recently i downloaded GyachE v1.1.48 for yahoo video chat. after installing GyachE when i started webcam its showing errors: Fatal: Video format not supported by Grab device.

View 3 Replies View Related

Ubuntu Multimedia :: Ffmpeg Video Capture - From A Webcam ?

Aug 30, 2010

Anybody had any success in getting ffmpeg to work as advertised with video capture from a webcam? I really want to convert the webcam output to VP8 or H264, but apparently ffmpeg can't even capture the webcam with a video4linux device.

Code:

View 9 Replies View Related

Ubuntu Multimedia :: Capture The Video Using The Command Line?

Jan 23, 2011

I wanted to share this nifty technique I came across for capturing video using the command line. The problem: I have a bunch of old VHS tapes (remember those...?) and need to get them digitized. I have a VCR, and a Dazzle Hollywood DV Bridge which captures video to DV over Firewire (IEEE1394). I first tried using Final Cut Pro, but it wouldn't capture, perhaps because it expects a controllable DV camera, and the Dazzle isn't a DVC device. I then tried my other favorite video editing app, Kdenlive, but it seemed to have the same problem.

I took a quick stab at the other common editors in the repositories (Kino, Openshot, etc.), but no luck with any of them. Then I remembered the dvgrab command, and gave that a shot and it worked, giving me a nice .dv file. However, DV makes pretty big files, which I wanted to compress down to something more manageable. Since I was going to be digitizing hours and hours of tapes, it would be great if I could compress while capturing. A little more googling and I had the answer - you can pipe dvgrab directly into ffmpeg! Here's the command:

Code:

dvgrab -format dv1 - | ffmpeg -f dv -i - -b 2000k -ab 512k -y output.mov

the first part starts the capture, in DV1 format, and outputs it to a pipe file. usually you give dvgrab a filename, like

Code:

dvgrab -format dv1 capture.dv

the second part does the encoding:

-f dv: use DV format
-i -: input from the pipe
-b 2000k: video encoding bitrate of 2000k/sec, high quality
-ab 512k: audio encoding bitrate
-y: overwrite file if it exists

I didn't set the codec explicitly, for Quicktime it defaults to MPEG4. This worked great, capturing a 2-hour tape into a high-quality quicktime around 2GB. But I also wanted to be able to view the capture while it was going. Since I left the field monitors and audio splitters at the office, I had to figure out how to do this in software. Turns out that the "tee" command does exactly what I needed - the shell never ceases to amaze! Here's the full command:

Code:

dvgrab -format dv1 - | tee >(ffmpeg -f dv -i - -b 2000k -ab 512k output.mov) >(playdv --disable-audio --no-mmap)

tee uses the

Code:

>(command)

syntax to pipe simultaneously to multiple processes. The only thing that didn't work was audio playback, which was choppy and introduced errors in the capture file. I think a little tweaking with the capture rates could fix that.

View 2 Replies View Related

Ubuntu Multimedia :: Capture Streaming Video / Grab These?

Feb 13, 2011

Up untill this week I used to grab a streamed video from my root/tmp file. Video is nolonger streamed to this file. What has happened? and how can I grab streamed video?

View 9 Replies View Related

Ubuntu Multimedia :: Capture Video From Sony DCR-HC54 With Kino

Jul 10, 2010

I'm trying to capture video from my Sony DCR-HC21 video camera. I've managed to install Kino fine but was getting the error

aw 1394 kernel module not loaded or failure to read/write /dev/raw/1394
I could get it working by opening as root but then the files belong to root which I didn't want. So I did the following (as suggested in another thread:

chmod 777 /dev/raw1394

And now I get the error "No AV/C compliant cam connected or not switched on"

I've tried so many things ie [URL]

and as I'm a novice I'm reluctant to keep trying random things when I don't really know what its doing.

OK, it's back to the first error, is there anyway to run Kino and capture video without changing to root?

View 9 Replies View Related

Ubuntu Multimedia :: Is There A Video Screen Motion Capture Utility

Oct 23, 2010

On my Windoze machine, I use Replay Media Catcher 4 which runs silently in the background and captures any videos (FLV, AVI, MPG, WMV, etc) on any websites that I happen to go to, and saves them to a folder on my hard drive. Right now, if I want to save a video that I'm wathing from Ubuntu, I have to go to /temp, guess which file it is, and copy it after it downloads fully but before it finishes playing, otherwise Firefox deletes it from /temp right away. This is a pain.

Yes, there are screen motion capture utilities in the Ubuntu Software Center, but they're just screen scrapers that result in low quality copies without any audio. I want something that will actually capture the video stream and save it as a file. Even if it doesn't save all videos automatically like RMC4, and I have to right click on the video to Save As, that would be better than copying it from /temp at the precise exact moment.

View 7 Replies View Related

Ubuntu Multimedia :: 10.10 - Setting VLC To Open With Video Capture Device?

Dec 18, 2010

I've made a lot of progress getting my easycap 2.0 usb capture device to work with ubuntu 10.10. I've got the picture up any everything works great. But about a minute into the stream it just freezes, I need to go into "playback" and either pause then play, or click "next", it then refreshes and works again for another minute or so. I'd believe it if someone says faulty hardware because the easycap is cheap, but I don't think that's the case. Additionally, is there any way to set VLC so that when I open it, it automatically opens with my video capture device (/dev/video0) so that I don't have to go into the options and change it every time?

View 1 Replies View Related

OpenSUSE Multimedia :: Kino - Video Capture Utility?

Nov 24, 2009

Does anybody know what has happened to Kino - the video capture utility? Used to be packaged by packman for Opensuse but doesn't seem to be available for 11.2.

Is there an alternative I can use for video capture - or has packman just not gotten around to adding this yet?

View 1 Replies View Related

Ubuntu Multimedia :: USB Video Capture Device Doesn't Work When Plugged In?

Sep 25, 2010

In Ubuntu 9.10, I was successfully able to use my Pinnacle Dazzle DVC 100 (a cheap USB analog video capture device). I use it for backing up old video that is stored on tapes, and it isn't working with my current install of Ubuntu 10.04. When I plug the device in, it should be detected and the em28xx module should be loaded. This fails and /var/log/messages has the following:

Code:
Sep 25 16:13:18 kernel: [1196215.111898] usb 2-2: new high speed USB device using ehci_hcd and address 20
Sep 25 16:13:18 kernel: [1196215.266097] usb 2-2: configuration #1 chosen from 1 choice

[code]....

View 3 Replies View Related

Ubuntu Multimedia :: Video Capture Devices - Recording Videogame Footage

Oct 5, 2010

I'm about to go buy a video capture card this week and was wondering if there's one that's easy to setup in Ubuntu or (ideally) has some official open source drivers available. I'm planning on recording videogame footage and the like from my consoles to edit on kdenlive and upload it to ..... (why? Cuz it can be done. =P). So I'm wondering if anyone has any recommendation before I order one. I'm only interested in SD resolution for the time being.

View 1 Replies View Related

Ubuntu Multimedia :: Finding Compatible External USB Video Capture Card

Nov 11, 2010

Does anyone know an Ubuntu 10.10 compatible video capture card that has composite connections for video and audio (yellow, red and white)? It must be external and do its own processing so it doesn't use the computer's own CPU. I intend to capture a live stream and have the Ubuntu PC serve it to other computers. I may use VLC or MythTV. I have looked on various related sites but finding a compatible USB one which does its own decoding is hard to find.

View 2 Replies View Related

OpenSUSE Multimedia :: Cheese Video Capture Hangs On Netbook?

Aug 6, 2010

I am trying to record a test video with my built-in webcam, using Cheese. However, after I click "Start recording," the Cheese screen turns black, and Cheese seems to hang. I can click "Stop recording" sometimes -- then I get a split-second video clip. But mostly it just hangs until I force quit.

I'm on an Asus 900HA. I could record video clips on using eeebuntu and Cheese. Is there a setting I need to check?

View 8 Replies View Related

Ubuntu Multimedia :: Acquired A Canopus ACEDVio Video Capture Card And Cannot Get It To Work?

Dec 30, 2010

I have acquired a Canopus ACEDVio video capture card and can not get it to work.

View 1 Replies View Related

Ubuntu Multimedia :: Video Capture - Captures Maybe 2 Seconds Of Movement Then Goes Black And / Or The Image Freezes

Mar 11, 2010

I have an Acer Aspire One Netbook, and I have the Ubuntu 9.10 Netbook Remix installed. I have tried using Cheese to capture video and it captures maybe 2 seconds of movement, then goes black and/or the image freezes. I can take photos just fine, but video capture seems to be impossible. Any help?

View 2 Replies View Related

Debian Multimedia :: Get Video Capture Working (huffyuv Didn't Work For Some Reason)?

Aug 26, 2011

Is there any way to get libmp3lame to work with ffmpeg without me having to completely recompile ffmpeg? I have managed to get video capture working (huffyuv didn't work for some reason) and this is my command:ffmpeg -f alsa -ac 2 -i hw:0,0 -f x11grab -r 25 -s hd1080 -i :0.0 -vcodec libx264 -vpre lossless_ultrafast -threads 0 -vf 'scale=-1:720' -sameq out.avi

There are so many answers and questions all over the place I can't even tell which package is actually causing the problem... (libmp3lame0? ffmpeg? libavcodec*?)

View 9 Replies View Related

Ubuntu Multimedia :: Analogue Capture Program To Capture Austar?

Aug 13, 2010

What is the best analogue capture program please to capture Austar.

View 1 Replies View Related

Ubuntu Multimedia :: Various Video Bugs In Lucid?

Jun 27, 2010

I did a clean install of Lucid, and almost everything video related is a little sluggish. First of all, Compiz is really slow compared to how it was in Karmic.
I don't even use window animations, just the Scale and a couple other effects, like desktop cube. Scale is really slow, and sometimes it doesn't work. I have to start compiz again to get it working. Desktop cube actually froze a couple of times half way through a rotation. Rotating the cube is much slower as well.

Also, I've been having a lot of trouble with HD video playback. It's not just the 100% CPU load that's bugging me, but every 3-4 minutes the playback skips frames, and the image becomes all glitchy.

Flash playback also uses a lot of CPU, I can't even watch ..... videos in fullscreen most of the time. And I'm always opting for the lowest quality possible btw.

I have a dual core AMD CPU and 8600GT nvidia graphics card, so it's not a hardware issue.

View 5 Replies View Related

Ubuntu Multimedia :: Video Stopped Working In Lucid

May 3, 2010

i upgraded to lucid, but now my video has stopped working... videos and iplayer work fine. the problem is with any videos (mp4, flv) opened in vlc or mplayer. i can hear sound fine but the screen is black. the same happens in skype. i followed the comprehensive guide and did all the steps, but no joy.

View 3 Replies View Related

Ubuntu Multimedia :: Video Choppy After Upgrade To Lucid

Jun 14, 2010

I just upgraded from Karmic to Lucid. I've never had problems with playing video files before, but now that I've upgraded to Lucid, I am, regardless of Compiz and other visual effects being on. What I know of my hardware specs are in my sig. I have "NVIDIA accelerated graphics driver (version current) [Recommended]" activated (and in fact, one of my reasons for upgrading was the supposedly improved NVIDIA drivers in Lucid). VLC, MPlayer and Totem are all choppy playing .avi's: they play smoothly for several seconds, then start skipping (audio and visual, separately), though VLC does so less violently than the others. Similar problems, though slightly less severe, with watching flash movies in chromium.

View 2 Replies View Related

Ubuntu Multimedia :: No Hardware Video Playback Acceleration In Lucid?

May 8, 2010

Today I installed the latest Ubuntu, added VLC and... the acceleration is not there. When I compiled VLC myself on 9.04 I had a checkbox to enable hardware acceleration in the FFMPEG codec settings but this checkbox is not present in the VLC that was downloaded to my 10.04 by default.am I doing something wrong or is the hardware acceleration simply not there? And what do I have to do to enable it? Is FFmpeg in 10.04 compiled with VAAPI support? Is VLC in 10.04 compiled with VAAPI support? Do I need to recompile both or just on of them? I have just updated my system and now I'm not able to watch the family movies from my HD camcorder.

View 2 Replies View Related

Ubuntu Multimedia :: WMV Video Silent In Lucid 32-bit Plays Audibly In XP

Jun 4, 2010

I have a WMV video which plays in XP but fails in 32-bit Ubuntu Lucid (same machine, dual boot), kernel 2.6.32-22 on a Lenovo SL400 w/ 2GB RAM, 36GB HD free and an Intel Core 2 Duo T5870 2GHz CPU.

Media player and Banshee fails with the error message No packages with the requested plugins found The requested plugins are Windows Media Audio 9

Avidemux crashes when I try to open the 6.3GB file, which I can play with audio AOK in XP.

Assert failed :_offset<=pakSize
at line 352, file /build/buildd/avidemux-2.5.2/avidemux/ADM_inputs/ADM_asf/ADM_asfPacket.cppADM_backTrack
asfPacket:ushPacket(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)

[code]....

View 4 Replies View Related

Ubuntu Multimedia :: Export A Video From Pitivi In A Format From Lucid 64-bit

Jun 5, 2010

i am trying to export a video from pitivi in a format that can be uploaded to videos. i found this thread which suggests using an flv muxer with the l.a.m.e. mp3 encoder. my problem is that my pitivi doesn't list lame as an option, and i haven't been able to get it in.

i have tried reinstalling lame from the repositories, and also building lame, ffmpeg, gstreamer, faac, x264 and pitivi from the latest source. i simply can't get a video format to export that works in videos. mp4 and other format exports don't seem to work at all, they get stuck on the first frame.

pitivi can export ogg video perfectly, however if i try to upload that to videos it comes out with bad video. i've tried converting the ogg video to avi with mencoder, but it drops a lot of frames and ends up with the audio badly out of sync. i've run out of ideas to try -- anyone been through this before, or know of something i may be doing wrong? i'm certainly no expert in building from source (or anything!), it just seemed like something to try...

View 2 Replies View Related

Ubuntu Multimedia :: 1080p Video Playback Working With NVidia Ion And Lucid?

Jun 6, 2010

I have a Zotac IONITX-F-E motherboard (Intel Atom Dual Core 1.6 GHz + Nvidia ION) -based box with Ubuntu 10.04 64-bit installed. Do you or does someone you know have the same setup as I do? If so, do they have 1080p video playback working? If so, what driver are they using? I've tried following every guide I could find, but no luck so far. I have libvdpau1 and libvdpau-dev installed. I have the nvidia 195.36.24 driver installed (I used the nvidia installer). I have mplayer installed (which I compiled from source with --enable-vdpau).

I try to run mplayer with this command:
Code:
mplayer -vo vdpau -vc ffh264vdpau path/to/myfile.mkv

I get the following message in my terminal:
Code:
Error opening/initializing the selected video_out (-vo) device.
I have libvdpau-dev and libvdpau1 installed.

After Googling this problem, I found a post that suggested the following steps:
Code:
sudo add-apt-repository ppa:nvidia-vdpau
sudo apt-get update
sudo apt-get install nvidia-glx-195 nvidia-195-modaliases

It turns out that I had already added the nvidia-vdpau repository. However, despite that, I get:
Code:
E: Couldn't find package nvidia-glx-195
The same problem exists for the nvidia-195-modaliases package. Do these packages exist? Is there some other way to get them?

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved