Oct 02

There are many tools available for recording video which are available on internet. Recently i have found one which is much more powerful and helpful. It’s “Camtasia” you can consider it as an “Online video Recorder” or a “video stream recorder” Camtasia is a product developed by the TechSmith Corporation

free-video-camtasia1
Camtasia is a video screen capture program using which you can easily capture and edit anything you see on your PC screen. You can grab videos and can save them in most popular video formats like AVI, streaming media formats (WMV, RM, MOV), and
animated GIF. Using its advance feature you can also pinpoint cursor movements with special visual effects, it also have wide range of effects such as highlighting, zooming, and panning, etc.

Basically Camtasia have two inbuilt programs, the Camtasia Recorder which is used to record Windows desktop activity into video format and Camtasia Producer which is a non-linear editor used for editing videos and for creating streaming videos and AVI files. Thus using above tools you can you can capture all screen activities and can save them in video format which can be of good quality and is highly compressed.
There are many advance features such as splitting/trimming/splitting AVI clips, AVI format conversion (e.g. frame rate, color depth, codecs), audio compression, smooth scaling (interpolation), hundreds of transition effects and many more which can be used with your video.

Such Online Video Recorder will save your precious time and thus you can concentrate more on building video website.

Update me when site is updated
Sep 20

ffmpeg-hosting

If you have many flv flash video format video files which you want to convert to some other video format in one go then you can use following bash script developed by Jake Hilton

If you are using ffmpeg on your dedicated server then you can use below bash script for batch convert of flv files to other required video format.

#!/bin/sh
for f in *.flv;
do
echo “Processing $f”
ffmpeg -i “$f” -target ntsc-dvd “${f%.flv}.mpg”

done

Thus using above script all flash video files having flv extension will get converted into a ntsc dvd format with file extension mpg. You can tweak it for required video format you need.

Vote of thanks to Jake Hilton http://www.jakehilton.com/?q=node/41 for sharing such excellent script

Update me when site is updated