Webcam capture or editing software recommend-me-do.

From: Some call me... (PSYCHO_GEEZER)24 Apr 2016 15:02
To: ALL1 of 16
Ahoy peeps, I've been using http://webcamera.io/ to record my BSL homework on.  I'm looking for a piece of software that will allow me to remove sound from the file to make the size smaller, is there something in Windows (8.1) to do this, or can anyone recommend me a free and easy to use for morons piece of software?

Also, is there a free and easy to use for morons capture program I can download where the audio is muted by default?  My webcam didn't come with a software suite or owt.

Anyone that says "google it" owes me a blowjob.

Mwuah x
From: ANT_THOMAS24 Apr 2016 15:03
To: Some call me... (PSYCHO_GEEZER) 2 of 16
VLC can do capturing and should allow you to choose codecs and mute audio.
From: Some call me... (PSYCHO_GEEZER)24 Apr 2016 15:27
To: ANT_THOMAS 3 of 16
From: ANT_THOMAS24 Apr 2016 15:42
To: Some call me... (PSYCHO_GEEZER) 4 of 16
Yep. Rather than opening a file you can capture and save to file.
From: ANT_THOMAS24 Apr 2016 15:43
To: Some call me... (PSYCHO_GEEZER) 5 of 16
From: Some call me... (PSYCHO_GEEZER)24 Apr 2016 15:52
To: ANT_THOMAS 6 of 16
Ta, I managed to get this to work but it doesn't show me on the screen when it's recording.  I need to see that my hands/face are in shot correctly enough to be read.
From: ANT_THOMAS24 Apr 2016 16:11
To: Some call me... (PSYCHO_GEEZER) 7 of 16
There's a box that you can tick that says "display locally". Try that.
From: ANT_THOMAS24 Apr 2016 16:13
To: Some call me... (PSYCHO_GEEZER) 8 of 16
new-file-destination.png?w=653&ssl=1
From: Some call me... (PSYCHO_GEEZER)24 Apr 2016 16:22
To: ANT_THOMAS 9 of 16
Nope :(
That gives me a still shot from the moment I open the camera and only shows that 1 shot.
From: ANT_THOMAS24 Apr 2016 16:38
To: Some call me... (PSYCHO_GEEZER) 10 of 16
Same here :C

Just opening the webcam without streaming/recording works fine.
From: Some call me... (PSYCHO_GEEZER)24 Apr 2016 16:44
To: ANT_THOMAS 11 of 16
Ah bugger it.  For now I have taken the file from webcamera.io and edited the sound down to 0 in Movie Maker.  It still has the sound data in it, but just saving the file again with 'recommended settings' shaves off a few MB.
From: Lucy (X3N0PH0N)24 Apr 2016 21:16
To: Some call me... (PSYCHO_GEEZER) 12 of 16
Code: 
ffmpeg -i whatever.mp4 -c copy -an whatever_nosound.mp4


Pretty sure ffmpeg works the same on Windows as on Linux so that should work. Should also be very fast since it's not re-encoding, just copying without the sound. '-an' is the switch that removes the sound.

From: Lucy (X3N0PH0N)24 Apr 2016 21:54
To: Lucy (X3N0PH0N) 13 of 16
Done some tests and stripping the audio is unlikely to save much space. This command will reduce the resolution down to 720 and strip the audio and use a pretty low bitrate. Should save some space. Obviously you can reduce the resolution further by changing "1280x720" to whatever you like. You can also change the bitrate by editing "-crf 30" to whatever you like. Higher crf = lower quality. (goes from 0-51 I believe).
 
Code: 
ffmpeg -i whatever.mkv -an -vcodec libx264 -crf 30 -threads 0 -s 1280x720 whatever_smaller.mkv


Needs a version of ffpmeg with x264 support. I have no idea whether the default one on Windows has this but if not you can download one that does from here: https://ffmpeg.zeranoe.com/builds/ (may as well get the static builds to keep it simple).
 
EDITED: 24 Apr 2016 21:54 by X3N0PH0N
From: Some call me... (PSYCHO_GEEZER)24 Apr 2016 22:48
To: Lucy (X3N0PH0N) 14 of 16
Thanks babes, I appreciate you too.  I was just getting miffed with how long it seemed to take to upload a relatively small file to dropbox, so thought I could take a minute to save some upload time.  This is definitely turning out to be harder than I thought, so I'll just work on being patient.
From: Lucy (X3N0PH0N)25 Apr 2016 00:18
To: Some call me... (PSYCHO_GEEZER) 15 of 16
<3
Message 41732.16 was deleted