video info mpeg video 0.993
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1729
Video::Info::MPEG::Video 0.993
Video::Info is a suite of modules to probe video files for various attributes. more>>
Video::Info is a suite of modules to probe video files for various attributes.
Previous versions of Video::Info depended on external modules, such as RIFF::Info and ASF::Info. This is no longer the case, you dont need to install them. All the functionality is now included with the Video::Info distribution.
INSTALLATION:
To install this module type the following:
perl Makefile.PL
make
make test (optional)
make install
<<lessPrevious versions of Video::Info depended on external modules, such as RIFF::Info and ASF::Info. This is no longer the case, you dont need to install them. All the functionality is now included with the Video::Info distribution.
INSTALLATION:
To install this module type the following:
perl Makefile.PL
make
make test (optional)
make install
Download (0.62MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1214 downloads
Video::Info::MPEG 0.993
Video::Info::MPEG is a basic MPEG bitstream attribute parser. more>>
Video::Info::MPEG is a basic MPEG bitstream attribute parser.
SYNOPSIS
use strict;
use Video::Info::MPEG;
my $video = Video::Info::MPEG->new( -file => $filename );
$video->probe();
print $file->type; ## MPEG
## Audio information
print $file->acodec; ## MPEG Layer 1/2
print $file->acodecraw; ## 80
print $file->achans; ## 1
print $file->arate; ## 128000 (bits/sec)
print $file->astreams ## 1
## Video information
printf "%0.2f", $file->fps ## 29.97
print $file->height ## 240
print $file->width ## 352
print $file->vstreams ## 1
print $file->vcodec ## MPEG1
print $file->vframes ## 529
print $file->vrate ## 1000000 (bits/sec)
The Moving Picture Experts Group (MPEG) is a working group in charge of the development of standards for coded representation of digital audio and video.
MPEG audio and video clips are ubiquitous but using Perl to programmatically collect information about these bitstreams has to date been a kludge at best.
This module parses the raw bitstreams and extracts information from the packet headers. It supports Audio, Video, and System (multiplexed audio and video) packets so it can be used on nearly every MPEG you encounter.
<<lessSYNOPSIS
use strict;
use Video::Info::MPEG;
my $video = Video::Info::MPEG->new( -file => $filename );
$video->probe();
print $file->type; ## MPEG
## Audio information
print $file->acodec; ## MPEG Layer 1/2
print $file->acodecraw; ## 80
print $file->achans; ## 1
print $file->arate; ## 128000 (bits/sec)
print $file->astreams ## 1
## Video information
printf "%0.2f", $file->fps ## 29.97
print $file->height ## 240
print $file->width ## 352
print $file->vstreams ## 1
print $file->vcodec ## MPEG1
print $file->vframes ## 529
print $file->vrate ## 1000000 (bits/sec)
The Moving Picture Experts Group (MPEG) is a working group in charge of the development of standards for coded representation of digital audio and video.
MPEG audio and video clips are ubiquitous but using Perl to programmatically collect information about these bitstreams has to date been a kludge at best.
This module parses the raw bitstreams and extracts information from the packet headers. It supports Audio, Video, and System (multiplexed audio and video) packets so it can be used on nearly every MPEG you encounter.
Download (0.62MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1195 downloads
Video::Info::Magic 0.993
Video::Info::Magic can resolve video filetype if possible. more>>
Video::Info::Magic can resolve video filetype if possible.
SYNOPSIS
use strict;
use Video::Info::Magic qw(:all);
my $type = divine(/path/to/video.mpg );
print $type; #MPEG system stream data (maybe)
## ... see methods below
EXPORT
various constants related to video file formats. All are prefixed with "VIDEO_".
divine(): Employs /usr/share/magic entries to determine a files type, as well as GUID and other info from Microsoft, mplayer, transcode...
<<lessSYNOPSIS
use strict;
use Video::Info::Magic qw(:all);
my $type = divine(/path/to/video.mpg );
print $type; #MPEG system stream data (maybe)
## ... see methods below
EXPORT
various constants related to video file formats. All are prefixed with "VIDEO_".
divine(): Employs /usr/share/magic entries to determine a files type, as well as GUID and other info from Microsoft, mplayer, transcode...
Download (0.62MB)
Added: 2006-07-20 License: Perl Artistic License Price:
1191 downloads
Video::Info::MPEG::System 0.993
Video::Info::MPEG::System is a suite of modules to probe video files for various attributes. more>>
Video::Info::MPEG::System is a suite of modules to probe video files for various attributes.
Previous versions of Video::Info depended on external modules, such as RIFF::Info and ASF::Info. This is no longer the case, you dont need to install them. All the functionality is now included with the Video::Info distribution.
To contribute, use Video::Info::FOO as a template to write a module, and email it to the Allen Day. Also see t/FOO.t as an example test script to verify the sanity of your code.
Installation:
To install this module type the following:
perl Makefile.PL
make
make test (optional)
make install
<<lessPrevious versions of Video::Info depended on external modules, such as RIFF::Info and ASF::Info. This is no longer the case, you dont need to install them. All the functionality is now included with the Video::Info distribution.
To contribute, use Video::Info::FOO as a template to write a module, and email it to the Allen Day. Also see t/FOO.t as an example test script to verify the sanity of your code.
Installation:
To install this module type the following:
perl Makefile.PL
make
make test (optional)
make install
Download (0.62MB)
Added: 2006-11-17 License: Perl Artistic License Price:
1071 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::Info::MPEG::Constants 0.993
Video::Info::MPEG::Constants is a suite of modules to probe video files for various attributes. more>>
Video::Info::MPEG::Constants is a suite of modules to probe video files for various attributes.
Previous versions of Video::Info depended on external modules, such as RIFF::Info and ASF::Info. This is no longer the case, you dont need to install them. All the functionality is now included with the Video::Info distribution.
To contribute, use Video::Info::FOO as a template to write a module, and email it to the Allen Day. Also see t/FOO.t as an example test script to verify the sanity of your code.
Installation:
To install this module type the following:
perl Makefile.PL
make
make test (optional)
make install
<<lessPrevious versions of Video::Info depended on external modules, such as RIFF::Info and ASF::Info. This is no longer the case, you dont need to install them. All the functionality is now included with the Video::Info distribution.
To contribute, use Video::Info::FOO as a template to write a module, and email it to the Allen Day. Also see t/FOO.t as an example test script to verify the sanity of your code.
Installation:
To install this module type the following:
perl Makefile.PL
make
make test (optional)
make install
Download (0.62MB)
Added: 2006-11-17 License: Perl Artistic License Price:
1071 downloads
Video::Info::FOO 0.993
Video::Info::FOO is a Perl module for video information. more>>
Video::Info::FOO is a Perl module for video information.
Video::Info::FOO - what is it useful for? an example list:
-video codec
-audio codec
-frame height
-frame width
-frame count
and more!
SYNOPSIS
use Video::Info::FOO;
my $video;
$video->vcodec; #video codec
$video->acodec; #audio codec
...
What does the module do? What are its limitations? Is it built on top of other code? If so, what are the details and where can I get it?
<<lessVideo::Info::FOO - what is it useful for? an example list:
-video codec
-audio codec
-frame height
-frame width
-frame count
and more!
SYNOPSIS
use Video::Info::FOO;
my $video;
$video->vcodec; #video codec
$video->acodec; #audio codec
...
What does the module do? What are its limitations? Is it built on top of other code? If so, what are the details and where can I get it?
Download (0.62MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1199 downloads
Video::Info::RIFF 0.993
Video::Info::RIFF is a Perl module that can probe DivX and AVI files for attributes. more>>
Video::Info::RIFF is a Perl module that can probe DivX and AVI files for attributes like:
-video codec
-audio codec
-frame height
-frame width
-frame count
and more!
SYNOPSIS
use Video::Info::RIFF;
my $video;
$video = Video::Info::RIFF->new(-file=>$filename); #like this
$video = Video::Info::RIFF->new(-file=>$filename,-headersize=>$headersize); #or this
$video->vcodec; #video codec
$video->acodec; #audio codec
...
RIFF stands for Resource Interchange File Format, in case you were wondering. The morbidly curious can find out more below in REFERENCES.
<<less-video codec
-audio codec
-frame height
-frame width
-frame count
and more!
SYNOPSIS
use Video::Info::RIFF;
my $video;
$video = Video::Info::RIFF->new(-file=>$filename); #like this
$video = Video::Info::RIFF->new(-file=>$filename,-headersize=>$headersize); #or this
$video->vcodec; #video codec
$video->acodec; #audio codec
...
RIFF stands for Resource Interchange File Format, in case you were wondering. The morbidly curious can find out more below in REFERENCES.
Download (0.62MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1198 downloads
Video::Info::ASF 0.993
Video::Info::ASF is a Perl module for ASF files atributes. more>>
Video::Info::ASF is a Perl module for ASF files for attributes like:
-video codec
-audio codec
-frame height
-frame width
-frame count
and more!
SYNOPSIS
use Video::Info::ASF;
my $video;
$video = Video::Info::ASF->new(-file=>$filename); #like this
$video->vcodec; #video codec
$video->acodec; #audio codec
...
ASF stands for Advanced Systems Format, in case you were wondering. It used to stand for Active Streaming Format, but Microsoft decided to change it. This type of file is primarily used to store audio & video data for local or streaming playback. It can also be embedded with commands (to launch a web browser, for instance), for an "immersive" experience. ASF is similar in structure to RIFF. (See RIFF::Info). The morbidly curious can find out more below in REFERENCES.
<<less-video codec
-audio codec
-frame height
-frame width
-frame count
and more!
SYNOPSIS
use Video::Info::ASF;
my $video;
$video = Video::Info::ASF->new(-file=>$filename); #like this
$video->vcodec; #video codec
$video->acodec; #audio codec
...
ASF stands for Advanced Systems Format, in case you were wondering. It used to stand for Active Streaming Format, but Microsoft decided to change it. This type of file is primarily used to store audio & video data for local or streaming playback. It can also be embedded with commands (to launch a web browser, for instance), for an "immersive" experience. ASF is similar in structure to RIFF. (See RIFF::Info). The morbidly curious can find out more below in REFERENCES.
Download (0.62MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1226 downloads
File::Headerinfo::Video 0.03
File::Headerinfo::Video is an extractor of useful information from video files. more>>
File::Headerinfo::Video is an extractor of useful information from video files.
File::Headerinfo::Video uses Video::Info to read the headers of video clips (of various kinds) and a few audio files, and extract from them the useful information we crave.
File::Headerinfo::Video can handle all the types that Video::Info can handle, including quicktime files, mpegs, DivX, AVI and ASF files.
<<lessFile::Headerinfo::Video uses Video::Info to read the headers of video clips (of various kinds) and a few audio files, and extract from them the useful information we crave.
File::Headerinfo::Video can handle all the types that Video::Info can handle, including quicktime files, mpegs, DivX, AVI and ASF files.
Download (0.047MB)
Added: 2006-07-20 License: Perl Artistic License Price:
1196 downloads
MPEG-2 Video Tools 0.1
mpeg2videotools is a C library and set of tools for encoding, decoding, verification and analysis of MPEG-2 video. more>>
mpeg2videotools is a C library and set of tools for encoding, decoding, verification and analysis of MPEG-2 video. It supports 422 Profile and High Profile bitstreams. A PSNR tool is included for comparing uncompressed video to encoded MPEG-2 video.
The library will provide a C API and be implemented in C. Platforms supported will be popular Unices and Linux, MS Windows and MacOSX. autoconf and automake will be used to achieve portability for most platforms. Decoded bitstreams will be displayed using X11 server for Unix and native Windows API for MS Windows.
Included is an encoder and decoder application which are useful for creating compliant bitstreams and decoding and verifying MPEG-ES, MPEG-PS, MPEG-PES and MPEG-TS bitstreams.
A number of important improvements over the original SSG code have already been made:
display on TrueColor visuals (16, 24, 32 bit displays)
decoding of MPEG-TS streams
decoding of broken streams which do not start with a required start code
autoconf build
MS Windows display
a library API to enable its use in other projects (ImageMagick and the AAF SDK come to mind)
MIAMI is an MPEG-2 video codec library which aims to be a complete implementation of the ISO/IEC 13812-2:2000 standard. The priority is completeness and correctness rather than speed. Included is an encoder and a decoder for MPEG-ES,PS,PES,TS bitstreams.
Enhancements:
- changed function decs to ANSI style
- added const qualifier to suitable function args
<<lessThe library will provide a C API and be implemented in C. Platforms supported will be popular Unices and Linux, MS Windows and MacOSX. autoconf and automake will be used to achieve portability for most platforms. Decoded bitstreams will be displayed using X11 server for Unix and native Windows API for MS Windows.
Included is an encoder and decoder application which are useful for creating compliant bitstreams and decoding and verifying MPEG-ES, MPEG-PS, MPEG-PES and MPEG-TS bitstreams.
A number of important improvements over the original SSG code have already been made:
display on TrueColor visuals (16, 24, 32 bit displays)
decoding of MPEG-TS streams
decoding of broken streams which do not start with a required start code
autoconf build
MS Windows display
a library API to enable its use in other projects (ImageMagick and the AAF SDK come to mind)
MIAMI is an MPEG-2 video codec library which aims to be a complete implementation of the ISO/IEC 13812-2:2000 standard. The priority is completeness and correctness rather than speed. Included is an encoder and a decoder for MPEG-ES,PS,PES,TS bitstreams.
Enhancements:
- changed function decs to ANSI style
- added const qualifier to suitable function args
Download (0.15MB)
Added: 2006-07-28 License: GPL (GNU General Public License) Price:
1199 downloads
City info search 0.9
City info search enables you to get all the information about any city in the USA with a mouse click. more>>
City info search enables you to get all the information about any city in the USA with a mouse click.
Get all the information about any city in the USA with a mouse click. This includes geography, population, ethnic composition, housing, climate, hospitals, airports, etc.
Usage: highlight the name on any US city on a page. Right click the mouse. Choose Get City Info.
No annoing toolbars.
<<lessGet all the information about any city in the USA with a mouse click. This includes geography, population, ethnic composition, housing, climate, hospitals, airports, etc.
Usage: highlight the name on any US city on a page. Right click the mouse. Choose Get City Info.
No annoing toolbars.
Download (0.080MB)
Added: 2007-04-27 License: MPL (Mozilla Public License) Price:
942 downloads
Video Disk Recorder 1.4.4
Video Disk Recorder is a digital satellite receiver program using Linux and DVB technologies. more>>
Video Disk Recorder (VDR) is a digital satellite receiver program using Linux and DVB technologies. Video Disk Recorder can record MPEG2 streams, as well as output the stream to TV. It also supports plugins for DVD, DivX, or MP3 playback and more.
Main features:
- Operation entirely via DVB cards On Screen Display and infrared control (LIRC/RCU) or keyboard
- Support for multiple DVB cards (up to four, at least one full featured card with video out required) and "conditional access" (CICAM)
- Channel groups
- EPG display by channel or by time ("Whats on now/next")
- Timers: Programming via EPG or manually, priority/lifetime model, single-shot or repeating timers which use EPG subtitle info as recordings title additionally
- Recording storage on disk: Automatically splitting of recording into files (<<less
Main features:
- Operation entirely via DVB cards On Screen Display and infrared control (LIRC/RCU) or keyboard
- Support for multiple DVB cards (up to four, at least one full featured card with video out required) and "conditional access" (CICAM)
- Channel groups
- EPG display by channel or by time ("Whats on now/next")
- Timers: Programming via EPG or manually, priority/lifetime model, single-shot or repeating timers which use EPG subtitle info as recordings title additionally
- Recording storage on disk: Automatically splitting of recording into files (<<less
Download (0.47MB)
Added: 2006-11-12 License: GPL (GNU General Public License) Price:
1093 downloads
DVD Home Video Project 0.4.0.1
DVD Home Video Project is a tool that provides a simple, quick way to transform video on a DV camcorder into a DVD. more>>
DVD Home Video Project is a tool that provides a simple, quick way to transform video on a DV camcorder into a fully functional DVD, including a menu with optional background images and music.
<<less Download (0.18MB)
Added: 2007-01-14 License: GPL (GNU General Public License) Price:
1017 downloads
Movie::Info 0.1
Movie::Info is a Perl module created to get meta data from various format movie files. more>>
SYNOPSIS
my $mi = Movie::Info->new || die "Couldnt find an mplayer to usen";
foreach my $file (@ARGV) {
my %info = $mi->info($file) || warn "Couldnt read info from $filen" && next;
print "$file (WxH) - $info{width}x$info{height}n";
}
Movie::Info is a thin layer around MPlayers --identify command line flag. As such it can only give you as much information as Mplayer is able to give you which is down to the quality and number of codecs you have installed.
MPlayer is available from http://www.mplayerhq.hu/
This module is largely based on the midentify script shipped with MPlayer.
METHODS
new [path to mplayer]
Returns a new Movie::Info instance or undef if it cant find an mplayer binary.
To find a binary it looks in three places - firstly if youve passed in a path to look at it checks there, secondly at the environment variable $MOVIE_INFO_MPLAYER_PATH and then finally it searches your $PATH like the standard which command in Unix.
info < filename >
Returns a hash representing all the meta data we can garner about file.
Returns undef if it cant read the file.
Download (0.019MB)
Added: 2007-05-29 License: Perl Artistic License Price:
883 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 info mpeg video 0.993 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