video surveillance
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 894
Video server 0.6
Video server is a streaming video server which feeds a Java applet/application for display. more>>
Video server is a streaming video server which feeds a Java applet/application for display. The updates are rather slow, somewhere in the 10 frames/second range on a PIII. The server is written in Bigloo scheme and C. The client is written in Java.
To bring up the video server you have to do the following.
./vs --channel 25 --sd 12 --input 0
./vs --help
for more options. (This seems broken with the newest version of bigloo .... )
How to bring up a java client to connect to a server:
Insure that video/java is in your classpath, and invoke
java vpanel servername
<<lessTo bring up the video server you have to do the following.
./vs --channel 25 --sd 12 --input 0
./vs --help
for more options. (This seems broken with the newest version of bigloo .... )
How to bring up a java client to connect to a server:
Insure that video/java is in your classpath, and invoke
java vpanel servername
Download (5.5MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1210 downloads
Video::Frequencies 0.901
Video::Frequencies is a Perl module that has many, many frequency constants and lists. more>>
Video::Frequencies is a Perl module that has many, many frequency constants and lists.
SYNOPSIS
use Video::Frequencies;
while (my($name,$list) = each %CHANLIST) {
print "$namen";
while (my($channel,$freq) = each %$list) {
printf " %-4s %9dn", $channel, $freq;
}
print "n";
}
This module exports (yes, exports!) frequency constants as well as hashes with channel => frequency relations for digital and analog video and audio broadcast. Another, shorter way to put it is "worldwide channel/frequency list". All frequencies are given in kHz.
Its a good idea to use perldoc -m Video::Frequencies to get an idea on how the various constants and lists look like.
<<lessSYNOPSIS
use Video::Frequencies;
while (my($name,$list) = each %CHANLIST) {
print "$namen";
while (my($channel,$freq) = each %$list) {
printf " %-4s %9dn", $channel, $freq;
}
print "n";
}
This module exports (yes, exports!) frequency constants as well as hashes with channel => frequency relations for digital and analog video and audio broadcast. Another, shorter way to put it is "worldwide channel/frequency list". All frequencies are given in kHz.
Its a good idea to use perldoc -m Video::Frequencies to get an idea on how the various constants and lists look like.
Download (0.084MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1191 downloads
iPod Video Encoder 1.0.2
iPod Video Encoder is a command line tool for convenient encoding of video files for use on iPod video. more>>
iPod Video Encoder is a command line tool for convenient encoding of video files for use on iPod video. iPod Video Encoder project uses the ffmpeg tool for the actual encoding.
It features recursive encoding of all files in a directory, and generating a podcast.xml file for convenient use in iTunes.
It can be used in a cron job that periodically checks directories for new files and encodes them without user intervention.
Main features:
- Encoding of single files
- Optional specification of a/v bitrates
- Recursively encode all files in a directory
- Generating a podcast.xml for convenient use in iTunes
Options:
--version show programs version number and exit
-h, --help show this help message and exit
-R, --recursive Process directories recusively
-f, --force Force re-encode existing iPod videos
-t, --test Only encode first 10 seconds, to produce test videos
-e EXTENSIONS, --extensions=EXTENSIONS
Comma separated list of input extensions. Default: avi
-i IPODEXT, --ipodext=IPODEXT
iPod extension. Default: .ipod.mp4
-b VIDEO_RATE, --video-rate=VIDEO_RATE
Video bit rate, in kbps (default: 1024)
-a AUDIO_RATE, --audio-rate=AUDIO_RATE
Audio bit rate, in kbps (128)
-W WIDTH, --width=WIDTH
Video width, in pixels (default: 320)
-H HEIGHT, --height=HEIGHT
Video height, in pixels (default: 240)
-P, --pretend Do not really encode, just print out the ffmpeg
commands which would be executed
-v, --verbose Enable verbose output
Podcast options:
-p, --podcast Generate a podcast.xml file for each directory.
--podcast-documentroot=PODCAST_DOCUMENTROOT
Podcast document root; eg. /var/data/Movies/
--podcast-baseurl=PODCAST_BASEURL
Podcast base URL; eg. http://localhost/
Enhancements:
- Only uses the -e option for processing directories.
- The default ipod extension is now _ipod.mp4 for Windows compatibility.
- The README file has been extended with information on the .ipod-encoder settings file.
- The program no longer crashes when HOME is not set on Windows.
- --width and --height parameters have been added.
<<lessIt features recursive encoding of all files in a directory, and generating a podcast.xml file for convenient use in iTunes.
It can be used in a cron job that periodically checks directories for new files and encodes them without user intervention.
Main features:
- Encoding of single files
- Optional specification of a/v bitrates
- Recursively encode all files in a directory
- Generating a podcast.xml for convenient use in iTunes
Options:
--version show programs version number and exit
-h, --help show this help message and exit
-R, --recursive Process directories recusively
-f, --force Force re-encode existing iPod videos
-t, --test Only encode first 10 seconds, to produce test videos
-e EXTENSIONS, --extensions=EXTENSIONS
Comma separated list of input extensions. Default: avi
-i IPODEXT, --ipodext=IPODEXT
iPod extension. Default: .ipod.mp4
-b VIDEO_RATE, --video-rate=VIDEO_RATE
Video bit rate, in kbps (default: 1024)
-a AUDIO_RATE, --audio-rate=AUDIO_RATE
Audio bit rate, in kbps (128)
-W WIDTH, --width=WIDTH
Video width, in pixels (default: 320)
-H HEIGHT, --height=HEIGHT
Video height, in pixels (default: 240)
-P, --pretend Do not really encode, just print out the ffmpeg
commands which would be executed
-v, --verbose Enable verbose output
Podcast options:
-p, --podcast Generate a podcast.xml file for each directory.
--podcast-documentroot=PODCAST_DOCUMENTROOT
Podcast document root; eg. /var/data/Movies/
--podcast-baseurl=PODCAST_BASEURL
Podcast base URL; eg. http://localhost/
Enhancements:
- Only uses the -e option for processing directories.
- The default ipod extension is now _ipod.mp4 for Windows compatibility.
- The README file has been extended with information on the .ipod-encoder settings file.
- The program no longer crashes when HOME is not set on Windows.
- --width and --height parameters have been added.
Download (0.010MB)
Added: 2006-01-20 License: GPL (GNU General Public License) Price:
1379 downloads
Video::Xine 0.02
Video::Xine is a Perl interface to libxine. more>>
Video::Xine is a Perl interface to libxine.
SYNOPSIS
use Video::Xine;
# Create and initialize the Xine object
my $xine = Video::Xine->new(
config_file => "$ENV{HOME}/.xine/config",
);
# Load a video driver
my $video_driver = Video::Xine::Driver::Video->new($xine,"auto",1,$x11_visual);
# Create a new stream (put your video driver under $DRIVER)
my $stream = $xine->stream_new(undef,$DRIVER);
# Open a file on the stream
$stream->open(file://my/movie/file.avi)
or die "Couldnt open stream: ", $stream->get_error();
# Get the current position (0 .. 65535), position in time, and length
# of stream in milliseconds
my ($pos, $pos_time, $length_time) = $stream->get_pos_length();
# Start the stream playing
$stream->play()
or die "Couldnt play stream: ", $xine->get_error();
# Play the stream to the end
while ( $stream->get_status() == XINE_STATUS_PLAY ) {
sleep(1);
}
A perl interface to Xine, the Linux movie player. More properly, an interface to libxine, the development library. Requires installation of libxine.
Xine by itself does not provide a user interface, and neither does this interface. Instead, you must set up the window using your own windowing code, and pass the window information to Xine.
<<lessSYNOPSIS
use Video::Xine;
# Create and initialize the Xine object
my $xine = Video::Xine->new(
config_file => "$ENV{HOME}/.xine/config",
);
# Load a video driver
my $video_driver = Video::Xine::Driver::Video->new($xine,"auto",1,$x11_visual);
# Create a new stream (put your video driver under $DRIVER)
my $stream = $xine->stream_new(undef,$DRIVER);
# Open a file on the stream
$stream->open(file://my/movie/file.avi)
or die "Couldnt open stream: ", $stream->get_error();
# Get the current position (0 .. 65535), position in time, and length
# of stream in milliseconds
my ($pos, $pos_time, $length_time) = $stream->get_pos_length();
# Start the stream playing
$stream->play()
or die "Couldnt play stream: ", $xine->get_error();
# Play the stream to the end
while ( $stream->get_status() == XINE_STATUS_PLAY ) {
sleep(1);
}
A perl interface to Xine, the Linux movie player. More properly, an interface to libxine, the development library. Requires installation of libxine.
Xine by itself does not provide a user interface, and neither does this interface. Instead, you must set up the window using your own windowing code, and pass the window information to Xine.
Download (0.63MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1204 downloads
Amarok Video Player 0.1
Amarok Video Player adds a PlayVideo/Play menu item to the context menu which runs KMPlayer. more>>
I like using Amarok for managing my podcasts but I wasnt able to play my video podcasts.
Amarok Video Player adds a PlayVideo/Play menu item to the context menu which runs KMPlayer.
Edit the script to change KMplayer to another video player.
<<lessAmarok Video Player adds a PlayVideo/Play menu item to the context menu which runs KMPlayer.
Edit the script to change KMplayer to another video player.
Download (MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1271 downloads
PSP Video Converter 0.1
PSP Video Converter project is a simple graphical frontend to ffmpeg to allow you to easily convert your videos to PSP format. more>>
PSP Video Converter project is a simple graphical frontend to ffmpeg to allow you to easily convert your videos to PSP compatibile format. Works for me, thought I may share.
Note: Created with Kommander 1.3, not sure if it works with earlier Kommander.
Note: There is no error checking for now, so make sure you have a working ffmpeg with necessary codecs installed.
Note: Looks like some PSPs cant open h264 videos encoded with ffmpeg.
<<lessNote: Created with Kommander 1.3, not sure if it works with earlier Kommander.
Note: There is no error checking for now, so make sure you have a working ffmpeg with necessary codecs installed.
Note: Looks like some PSPs cant open h264 videos encoded with ffmpeg.
Download (0.033MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
704 downloads
videocheck 0.1
videocheck project is a simple program for checking and analyzing video AVI file structure. more>>
videocheck project is a simple program for checking and analyzing video AVI file structure.
The program is useful for recovering broken AVI files or finding bugs during development of software that produces AVI files.
<<lessThe program is useful for recovering broken AVI files or finding bugs during development of software that produces AVI files.
Download (0.022MB)
Added: 2007-06-20 License: Free To Use But Restricted Price:
858 downloads
Video Related Picture Editor 0.32
Video Related Picture Editor is a gtk2 GUI frontend for batch-manipulating images using ImageMagick, MPlayer and transcode. more>>
Video Related Picture Editor is a gtk2 GUI frontend for batch-manipulating images using ImageMagick, MPlayer and transcode.
Its also the name of the infamous VRPE Team who paid me for hacking this together quickly because they needed it.
The name
Why "video related picture encoder" ? Because I didnt find a better name :) Any suggestions are welcome. With v0.1 the project was called "gFader" because all it did was "morphing" single frames to slow-down a video (giving a "fade-like effect") as batch-job with nice gui so poor Windows users could use it ;) My customer then wanted gFader to also do crop and scaling of multiple image files which rendered "gFader" as projectname useless. So i tried to make up some general name, which still fits if the application-range grows.
What can it do?
VRPE is able to do batch image-processing on a large set of images providing a way to move between images and giving a preview of the current, the previous and the next frame all with a nice GUI.
Different effects can be applied to the image-set (e.g morph, crop). Some of the effects support variable parameters so an effect can change with the image position.
VRPE can load several image formats (the ones supported by gtk2 and ImageMagick) or can convert almost any video to single frames using mplayer. It exports single images but also can render a videofile using mencoder or transcode. You can even launch mplayer to look at what youve done.
Other Features are:
Tooltip explainations almost everywhere
Nice wiki
quite fast
Drawbacks at this time:
lousy hacked together code
somewhat static filename handling
no "project" cababilities (images from previous sessions get imported if directory is not cleared etc.)
morph-curve gets lost
many more...
<<lessIts also the name of the infamous VRPE Team who paid me for hacking this together quickly because they needed it.
The name
Why "video related picture encoder" ? Because I didnt find a better name :) Any suggestions are welcome. With v0.1 the project was called "gFader" because all it did was "morphing" single frames to slow-down a video (giving a "fade-like effect") as batch-job with nice gui so poor Windows users could use it ;) My customer then wanted gFader to also do crop and scaling of multiple image files which rendered "gFader" as projectname useless. So i tried to make up some general name, which still fits if the application-range grows.
What can it do?
VRPE is able to do batch image-processing on a large set of images providing a way to move between images and giving a preview of the current, the previous and the next frame all with a nice GUI.
Different effects can be applied to the image-set (e.g morph, crop). Some of the effects support variable parameters so an effect can change with the image position.
VRPE can load several image formats (the ones supported by gtk2 and ImageMagick) or can convert almost any video to single frames using mplayer. It exports single images but also can render a videofile using mencoder or transcode. You can even launch mplayer to look at what youve done.
Other Features are:
Tooltip explainations almost everywhere
Nice wiki
quite fast
Drawbacks at this time:
lousy hacked together code
somewhat static filename handling
no "project" cababilities (images from previous sessions get imported if directory is not cleared etc.)
morph-curve gets lost
many more...
Download (0.28MB)
Added: 2006-09-14 License: GPL (GNU General Public License) Price:
659 downloads
GNOME Video Arcade 0.4.2
GNOME Video Arcade is a simple xmame front-end for the GNOME Desktop Environment. more>>
GNOME Video Arcade is a simple xmame front-end for the GNOME Desktop Environment.
Just getting this project off the ground. Im hoping to create a simple and easy-to-use xmame front-end that is not just another mame32 clone.
This project is aimed at casual gamers like myself that just want to play classic arcade games on their desktop.
<<lessJust getting this project off the ground. Im hoping to create a simple and easy-to-use xmame front-end that is not just another mame32 clone.
This project is aimed at casual gamers like myself that just want to play classic arcade games on their desktop.
Download (0.33MB)
Added: 2007-08-05 License: GPL (GNU General Public License) Price:
815 downloads
Linux Video Studio 0.1.7
Linux Video Studio is a simple/small application to make the capturing of video on MJPEG-hardware CODEC boards easier. more>>
Linux Video Studio is a simple/small application to make the capturing of video on MJPEG-hardware CODEC boards easier.
The application uses the MJPEG-tools, a set of programs to capture video and do lots of things with this. You need to have MJPEG-Tools installed before trying to install Linux Video Studio (also see installation notes) ! Linux Video Studio also uses the Xvideo extension in XFree 4.x to see what youre recording.
But that is not all. I want more than just capturing. My dream is to create one big application that does all the work at once. Not just one application for capturing, one for editing (xlav?), etc. No, my dream is to have one application doing it all. I hope Linux Video Studio can be part of that.
Installation:
You need Gtk to use this application. You also need the MJPEG-Tools installed. Besides that, you now also need an X-server with the Xvideo extension installed (i.e. you need XFree 4.x). In the XF86Config file, add the line Load "v4l" in the modules-section. Next, restart X (you must have the zoran drivers loaded before staring X, or the V4L-module wont work!). For some distros, you might have to install this module first (RedHat 7.0: you need the XFree86-V4L-.... RPM).
From source:
# tar -zxf linuxvideostudio-x.y.z.tar.gz
# cd linuxvideostudio-x.y.z
# ./configure
# make
# make install
From binary RPM:
# rpm --install linuxvideostudio-x.y.z-n.i386.rpm
You can also use GnoRPM or another convenience tool.
From Source RPM:
# rpm --rebuild linuxvideostudio-x.y.z-n.src.rpm
# cd /usr/src/redhat/RPMS/i386/
# rpm --install linuxvideostudio-x.y.z-n.i386.rpm
Enhancements:
- some GList related preferences save bugfixes
- bugfixes where the extension of a file (.mp2, .m1v) precedes the filename, but that path doesnt exist
<<lessThe application uses the MJPEG-tools, a set of programs to capture video and do lots of things with this. You need to have MJPEG-Tools installed before trying to install Linux Video Studio (also see installation notes) ! Linux Video Studio also uses the Xvideo extension in XFree 4.x to see what youre recording.
But that is not all. I want more than just capturing. My dream is to create one big application that does all the work at once. Not just one application for capturing, one for editing (xlav?), etc. No, my dream is to have one application doing it all. I hope Linux Video Studio can be part of that.
Installation:
You need Gtk to use this application. You also need the MJPEG-Tools installed. Besides that, you now also need an X-server with the Xvideo extension installed (i.e. you need XFree 4.x). In the XF86Config file, add the line Load "v4l" in the modules-section. Next, restart X (you must have the zoran drivers loaded before staring X, or the V4L-module wont work!). For some distros, you might have to install this module first (RedHat 7.0: you need the XFree86-V4L-.... RPM).
From source:
# tar -zxf linuxvideostudio-x.y.z.tar.gz
# cd linuxvideostudio-x.y.z
# ./configure
# make
# make install
From binary RPM:
# rpm --install linuxvideostudio-x.y.z-n.i386.rpm
You can also use GnoRPM or another convenience tool.
From Source RPM:
# rpm --rebuild linuxvideostudio-x.y.z-n.src.rpm
# cd /usr/src/redhat/RPMS/i386/
# rpm --install linuxvideostudio-x.y.z-n.i386.rpm
Enhancements:
- some GList related preferences save bugfixes
- bugfixes where the extension of a file (.mp2, .m1v) precedes the filename, but that path doesnt exist
Download (0.32MB)
Added: 2006-03-02 License: GPL (GNU General Public License) Price:
1359 downloads
Video::OpenQuicktime 1.02
Video::OpenQuicktime is an interface to the OpenQuicktime library. more>>
Video::OpenQuicktime is an interface to the OpenQuicktime library.
SYNOPSIS
use Video::OpenQuicktime;
my $qt = Video::OpenQuicktime->new(file=>"sample.mov");
$qt->get_video_height;
$qt->get_audio_compression;
$qt->get_audio_samplerate;
From the OpenQuicktime site, http://www.openquicktime.org:
"OpenQuicktime aims to be a portable library for handling Apples QuickTime(TM) popular media files on Unix-like environments. It is aim is to provide encoding, authoring and editing support as well as video playback."
OpenQuicktime is currently able to decode as well as encode video and audio streams. The Video::OpenQuicktime library currently only supports extracting diagnostic information from Quicktime files, such as video dimensions, codecs used, and play length.
I would like to add support for video and audio demux at some point, but dont have the time to develop it right now. Given sufficient user interest or free time, Ill do it. Patches are also welcome in case anyone else wants to help me out, see the contact information below.
<<lessSYNOPSIS
use Video::OpenQuicktime;
my $qt = Video::OpenQuicktime->new(file=>"sample.mov");
$qt->get_video_height;
$qt->get_audio_compression;
$qt->get_audio_samplerate;
From the OpenQuicktime site, http://www.openquicktime.org:
"OpenQuicktime aims to be a portable library for handling Apples QuickTime(TM) popular media files on Unix-like environments. It is aim is to provide encoding, authoring and editing support as well as video playback."
OpenQuicktime is currently able to decode as well as encode video and audio streams. The Video::OpenQuicktime library currently only supports extracting diagnostic information from Quicktime files, such as video dimensions, codecs used, and play length.
I would like to add support for video and audio demux at some point, but dont have the time to develop it right now. Given sufficient user interest or free time, Ill do it. Patches are also welcome in case anyone else wants to help me out, see the contact information below.
Download (0.097MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1197 downloads
MPlayer Youtube Video Streamer 0.0.1
MPlayer Youtube Video Streamer lets you watch YouTube videos even if you dont have the flash plugin. more>>
Want to watch Youtube video, but you dont have Flash plugin? (ex: gnu/linux ppc os), so try this great script to watch STREAMING VIDEOS from Youtube! You dont need to download video on your disk, you can stream directly the FLV videos from Youtube!
MPlayer Youtube Video Streamer lets you watch YouTube videos even if you dont have the flash plugin.
Usage: myvs [options] video_url
Options:
-h, --help print this help text and exit
-v, --version print program version and exit
-u USERNAME, --username=USERNAME account username
-p PASSWORD, --password=PASSWORD account password
-o FILE, --output=FILE output video file name
-q, --quiet activates quiet mode
-s, --stream do not download video, but stream directly by mplayer
-C, --cache set a cache of 300k, for slow connection
-c, --cycle cycle 20 times while youtube redirect to vo.llnwd.net (that streams .flv)
-t, --title use title in file name
-n, --netrc use .netrc authentication data
-O, --streamonly Force the script to stream only, if it doesnt find a valid stream server simply quit
Who to use it with Firefox:
Now I will explain you how to get it working with Firefox,
First we need a Firefox extension called: Lanchy,
this extension give us the ability to open directly from Firefox Youtube video on youtube webpage (not on all webpages that have a youtube video!
You ALWAYS need the youtube videos webpage! After you have installed Launchy (from firefoxs addon site), restart Firefox, now it will ask you to insert a Launchys button on your toolbar (DO IT! so open Youtube videos will be very simply), after that go on the preferences/option of this extension and uncheck the option: "search automatically programs".
Now copy the "launchy.xml" file that you found on the package and copy it on your directory:
".mozilla/firefox/YOUR_ID.default/chrome/" , after copied it, please dont forget to edit it with your myvs.py COMPLETE PATH, and add or delete oppurtune option to pass to the script.
Now restart again firefox an watch if it recognise the command (by pressing the G).
Go on youtube.com, open a video webpage, click on the G button-> Open in Mplayer Youtube Video Streamer.
<<lessMPlayer Youtube Video Streamer lets you watch YouTube videos even if you dont have the flash plugin.
Usage: myvs [options] video_url
Options:
-h, --help print this help text and exit
-v, --version print program version and exit
-u USERNAME, --username=USERNAME account username
-p PASSWORD, --password=PASSWORD account password
-o FILE, --output=FILE output video file name
-q, --quiet activates quiet mode
-s, --stream do not download video, but stream directly by mplayer
-C, --cache set a cache of 300k, for slow connection
-c, --cycle cycle 20 times while youtube redirect to vo.llnwd.net (that streams .flv)
-t, --title use title in file name
-n, --netrc use .netrc authentication data
-O, --streamonly Force the script to stream only, if it doesnt find a valid stream server simply quit
Who to use it with Firefox:
Now I will explain you how to get it working with Firefox,
First we need a Firefox extension called: Lanchy,
this extension give us the ability to open directly from Firefox Youtube video on youtube webpage (not on all webpages that have a youtube video!
You ALWAYS need the youtube videos webpage! After you have installed Launchy (from firefoxs addon site), restart Firefox, now it will ask you to insert a Launchys button on your toolbar (DO IT! so open Youtube videos will be very simply), after that go on the preferences/option of this extension and uncheck the option: "search automatically programs".
Now copy the "launchy.xml" file that you found on the package and copy it on your directory:
".mozilla/firefox/YOUR_ID.default/chrome/" , after copied it, please dont forget to edit it with your myvs.py COMPLETE PATH, and add or delete oppurtune option to pass to the script.
Now restart again firefox an watch if it recognise the command (by pressing the G).
Go on youtube.com, open a video webpage, click on the G button-> Open in Mplayer Youtube Video Streamer.
Download (0.060MB)
Added: 2007-03-14 License: GPL (GNU General Public License) Price:
580 downloads
Video::Info 0.993
Video::Info can retrieve video properties such as: height width codec fps. more>>
Video::Info can retrieve video properties such as: height width codec fps.
SYNOPSIS
use Video::Info;
my $info = Video::Info->new(-file=>my.mpg);
$info->fps();
$info->aspect();
## ... see methods below
Video::Info is a factory class for working with video files. When you create a new Video::Info object (see methods), something like this will happen: 1) open file, determine type. See Video::Info::Magic. 2) attempt to create object of appropriate class (ie, MPEG::Info for MPEG files, RIFF::Info for AVI files). 3) Probe the file for various attributes 4) return the created object, or a Video::Info object if the appropriate class is unavailable.
Currently, Video::Info can create objects for the following filetypes:
Module Filetype
-------------------------------------------------
Video::Info::ASF ASF
MP3::Info MPEG Layer 2, MPEG Layer 3
Video::Info::MPEG MPEG1, MPEG2, MPEG 2.5
Video::Info::RIFF AVI, DivX
Video::Info::Quicktime MOV, MOOV, MDAT, QT
And support is planned for:
Module Filetype
-------------------------------------------------
Video::Info::Real RealNetworks formats
<<lessSYNOPSIS
use Video::Info;
my $info = Video::Info->new(-file=>my.mpg);
$info->fps();
$info->aspect();
## ... see methods below
Video::Info is a factory class for working with video files. When you create a new Video::Info object (see methods), something like this will happen: 1) open file, determine type. See Video::Info::Magic. 2) attempt to create object of appropriate class (ie, MPEG::Info for MPEG files, RIFF::Info for AVI files). 3) Probe the file for various attributes 4) return the created object, or a Video::Info object if the appropriate class is unavailable.
Currently, Video::Info can create objects for the following filetypes:
Module Filetype
-------------------------------------------------
Video::Info::ASF ASF
MP3::Info MPEG Layer 2, MPEG Layer 3
Video::Info::MPEG MPEG1, MPEG2, MPEG 2.5
Video::Info::RIFF AVI, DivX
Video::Info::Quicktime MOV, MOOV, MDAT, QT
And support is planned for:
Module Filetype
-------------------------------------------------
Video::Info::Real RealNetworks formats
Download (0.62MB)
Added: 2006-07-20 License: Perl Artistic License Price:
1197 downloads
Video::TeletextDB 0.02
Video::TeletextDB is Perl extension to manage a telextext database. more>>
Video::TeletextDB is Perl extension to manage a telextext database.
SYNOPSIS
use Video::TeletextDB;
$tele_db = Video::TeletextDB->new(%options);
# Possible options are:
# cache_dir => $directory
# mkpath => $boolean
# umask => $mask
# creat => $boolean
# RW => $boolean
# page_versions => $number
# channel => $string
# stale_period => $seconds
# expire_period => $seconds
$access = $tele_db->access(%options);
# Possible options are:
# umask => $mask
# creat => $boolean
# RW => $boolean
# page_versions => $number
# channel => $string
# stale_period => $seconds
# expire_period => $seconds
$cache_dir = $tele_db->cache_dir;
$channel = $tele_db->channel;
$old_channel = $tele_db->channel($new_channel);
@channels = $tele_db->channels;
$nr_channels = $tele_db->channels;
$boolean = $tele_db->has_channel(?$channel?);
$db_file = $tele_db->db_file;
$lock_file = $tele_db->lock_file;
$tele_db->lock;
$page_versions= $tele_db->page_versions;
$umask = $tele_db->umask;
$old_umask = $tele_db->umask($new_umask);
$RW = $tele_db->RW;
$old_RW = $tele_db->RW($new_RW);
$stale_period = $tele_db->stale_period;
$old_stale_period = $tele_db->stale_period($new_stale_period);
$expire_period = $tele_db->expire_period;
$old_expire_period = $tele_db->expire_period($new_expire_period);
$user_data = $tele_db->user_data;
$old_user_data= $tele_db->user_data($new_user_data);
$tele_db->delete(%options);
The idea behind a teletext database is to separate the process of collecting teletext pages from the process of presentation. This makes programs both shorter (you dont have to implement the side yourre not interested in) and more flexible (you can read teletext pages long after the collector stopped running and you dont have to be tuned in to the channel you want to read).
In fact, the simple script TeleCollect coming with this package will be good enough for most teletext collection purposes, so that you can concentrate on the page processing.
This modules provides you with methods to both store and retrieve pages into a database and some rudimentary support to manage a set of databases (typically one for each channel). The pages will be stored in raw form so that a client can decide for itself how to handle things like transmission errors (there are of suggested methods provided in the module though, so you dont have to reinvent the wheel every time).
It (currently) use a Berkeley DB with an external lockfile for the actual storage. It only uses the version 1.85 features, so it should work almost everywhere. There will be one database and lockfile for each channel and all channel databases and locks will normally be collected in one directory.
<<lessSYNOPSIS
use Video::TeletextDB;
$tele_db = Video::TeletextDB->new(%options);
# Possible options are:
# cache_dir => $directory
# mkpath => $boolean
# umask => $mask
# creat => $boolean
# RW => $boolean
# page_versions => $number
# channel => $string
# stale_period => $seconds
# expire_period => $seconds
$access = $tele_db->access(%options);
# Possible options are:
# umask => $mask
# creat => $boolean
# RW => $boolean
# page_versions => $number
# channel => $string
# stale_period => $seconds
# expire_period => $seconds
$cache_dir = $tele_db->cache_dir;
$channel = $tele_db->channel;
$old_channel = $tele_db->channel($new_channel);
@channels = $tele_db->channels;
$nr_channels = $tele_db->channels;
$boolean = $tele_db->has_channel(?$channel?);
$db_file = $tele_db->db_file;
$lock_file = $tele_db->lock_file;
$tele_db->lock;
$page_versions= $tele_db->page_versions;
$umask = $tele_db->umask;
$old_umask = $tele_db->umask($new_umask);
$RW = $tele_db->RW;
$old_RW = $tele_db->RW($new_RW);
$stale_period = $tele_db->stale_period;
$old_stale_period = $tele_db->stale_period($new_stale_period);
$expire_period = $tele_db->expire_period;
$old_expire_period = $tele_db->expire_period($new_expire_period);
$user_data = $tele_db->user_data;
$old_user_data= $tele_db->user_data($new_user_data);
$tele_db->delete(%options);
The idea behind a teletext database is to separate the process of collecting teletext pages from the process of presentation. This makes programs both shorter (you dont have to implement the side yourre not interested in) and more flexible (you can read teletext pages long after the collector stopped running and you dont have to be tuned in to the channel you want to read).
In fact, the simple script TeleCollect coming with this package will be good enough for most teletext collection purposes, so that you can concentrate on the page processing.
This modules provides you with methods to both store and retrieve pages into a database and some rudimentary support to manage a set of databases (typically one for each channel). The pages will be stored in raw form so that a client can decide for itself how to handle things like transmission errors (there are of suggested methods provided in the module though, so you dont have to reinvent the wheel every time).
It (currently) use a Berkeley DB with an external lockfile for the actual storage. It only uses the version 1.85 features, so it should work almost everywhere. There will be one database and lockfile for each channel and all channel databases and locks will normally be collected in one directory.
Download (0.063MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1193 downloads
Linux Video Maker 0.2.0
Linux Video Maker is useful for DVD/(S)VCD structure generating, ready for record on CD/DVD. more>>
Linux Video Maker is useful for DVD/(S)VCD structure generating, ready for record on CD/DVD. Its in fact graphics interface (GUI) for transcode, mplex, DVDAuthor and few other programs...
Using of these programs for this purpose is uncomfortable and sometimes difficult especially for beginners because it involves a lot of knowledge about DVD/(S)VCD technology and video converting.
Linux Video Maker binds funcionality of 8 exterior programs and prevents from making many mistakes mainly in conversion process which can take a lot of time as AVI files uses complicated video algorithms (DIVX).
Program doesnt contain yet too many advanced options but it allow generate a standard DVD/(S)VCD structure without any problems.
Program in 2 GUI languages: english and polish !
<<lessUsing of these programs for this purpose is uncomfortable and sometimes difficult especially for beginners because it involves a lot of knowledge about DVD/(S)VCD technology and video converting.
Linux Video Maker binds funcionality of 8 exterior programs and prevents from making many mistakes mainly in conversion process which can take a lot of time as AVI files uses complicated video algorithms (DIVX).
Program doesnt contain yet too many advanced options but it allow generate a standard DVD/(S)VCD structure without any problems.
Program in 2 GUI languages: english and polish !
Download (0.38MB)
Added: 2006-02-16 License: Open Software License Price:
1366 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above video surveillance search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed