Main > Free Download Search >

Free video scripting software for linux

video scripting

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4574
Movie2XviD Script 0.2.0

Movie2XviD Script 0.2.0


Movie2XviD is a script for encoding a DVD or other movie to AVI (XviD). more>>
Movie2XviD is a script for encoding a DVD or other movie to AVI (XviD).
Auto computing bitrate and hight quality, but it is a little slowly.
Enhancements:
- Add options
- video filter
- help
- new computing bitrate
<<less
Download (0.001MB)
Added: 2007-01-21 License: Perl Artistic License Price:
1007 downloads
Video server 0.6

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
<<less
Download (5.5MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1210 downloads
Advanced Bash Scripting Guide 5.6

Advanced Bash Scripting Guide 5.6


Complete ebook tutorial and reference on shell scripting with Bash in Linux/UNIX/BSD. This is the equivalent of a 940-page printed book. more>> <<less
Download (2.91MB)
Added: 2009-04-10 License: Freeware Price: $0
259 downloads
 
Other version of Advanced Bash Scripting Guide
Advanced Bash Scripting Guide 5.4Complete ebook tutorial and reference on shell scripting with Bash in Linux/UNIX/BSD. This is ... Complete ebook tutorial and reference on shell scripting with Bash in Linux/UNIX/BSD. This is
Price: $0
License:Freeware
Download (2.85MB)
250 downloads
Added: 2009-04-03
Advanced Bash Scripting Guide 5.0is both a reference and a tutorial on shell scripting. Advanced Bash Scripting Guide 5.0 - M. Leo ... Advanced Bash Scripting Guide serves as a textbook, a manual for self-study, and a reference
License:(FDL) GNU Free Documentation License
Download (0.74MB)
892 downloads
Added: 2007-06-21
Videoconv 1.6

Videoconv 1.6


Videoconv is a shell-based frontend to mpeg-tools, transcode, vcdimager, and cdrdao. more>>
Videoconv is a shell-based frontend to mpeg-tools, transcode, vcdimager, and cdrdao. This script converts AVI videos to VCD, SVCD, or DivX, and optionally burns them to CD. The script was designed to allow even unexperienced users to convert videos.
It is only a simple frontend to mjpeg-tools and transcode.But you will need these helpful tools:
mjpegtools (Converting)
transcode (DIVX)
videocodecs you want to use with transcode (divx5, opendivx and xvid)
vcdimager (what may this be for ?)
cdrdao (burning)
Youseful but not mandatory, versions may be higher:
divx4linux
libdvdcss2
libdvdread
libfame
win32-codecs
xvid
Enhancements:
- Quality of the generated videos was improved
- Added support for multipassencoding with divx
- PCB-Menusupport added for VCD und SVCD with vcdxgen
- Changed $ to * for the wildcard in the vcdxgen part. This should fix the error with the vcdmenuecreation
- Added option -x to transcode, because autodection of some avifiles failed
- Some minor bugfixes
<<less
Download (0.013MB)
Added: 2006-07-22 License: GPL (GNU General Public License) Price:
1193 downloads
Arena Scripting Language 0.9.12

Arena Scripting Language 0.9.12


Arena Scripting Language is a light-weight scripting language. more>>
Arena Scripting Language is a light-weight scripting language. The language uses a syntax and library similar to that of ANSI C, but adds automatic memory management and runtime polymorphism on top of that.
Main features:
- syntax similar to ANSI C
- standard library similar to ANSI C
- automatic memory management
- runtime polymorphism
- support for exceptions
- support for anonymous functions
Enhancements:
- This release changes the system() library function to return the raw exit status as given by the operating system.
<<less
Download (.0.18MB)
Added: 2007-08-21 License: BSD License Price:
795 downloads
SILVERCODERS T-Script 0.7.0

SILVERCODERS T-Script 0.7.0


SILVERCODERS T-Script is a scripting language which primary purpose is to generate text files. more>>
SILVERCODERS T-Script is a scripting language which primary purpose is to generate text files.

It can be useful for processing template files based on some additional data retrieved from data sources like sql databases or other text files. T-Script can be easly embedded into your application and work with its internal data.

SILVERCODERS T-Script library is now being intergrated into the LMS project.
<<less
Download (0.035MB)
Added: 2007-01-24 License: Freeware Price:
1003 downloads
Video::DVDRip 0.98.6

Video::DVDRip 0.98.6


Video::DVDRip is a GUI for copying DVDs, based on an open Low Level API. more>>
Video::DVDRip is a GUI for copying DVDs, based on an open Low Level API.

This Perl module consists currently of two major components:

1. A low level OO style API for ripping and transcoding DVD video, which is based on Thomas Oestreichs program transcode, a Linux Video Stream Processing Tool. This API is currently well undocumented.

2. A Gtk+ based Perl program called dvd::rip which provides a nice GUI to control all necessary steps from ripping, adjusting all parameters and transcoding the video to the format you desire.

The distribution name is derived from the Perl namespace it occupies:

Video::DVDRip. Although the DVD Ripper GUI is called dvd::rip, because its shorter and easier to pronounce (if you omit the colons...)

<<less
Download (1.5MB)
Added: 2007-04-26 License: Perl Artistic License Price:
565 downloads
Video::Xine 0.02

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.

<<less
Download (0.63MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1204 downloads
NullLogic Embedded Scripting Language 0.8.0

NullLogic Embedded Scripting Language 0.8.0


NullLogic Embedded Scripting Language code looks a lot like php but with a lot less dollar signs. more>>
NullLogic Embedded Scripting Language (Nesla) code looks a lot like php (the same basic c operators, syntax and flow control) but with a lot less dollar signs. Internally, Nesla has a very clean API that makes it easy for c programs to make full use of its functions and data.

Nesla was originally written as a lightweight object model for c.

Nesla is Free Software, and is available under the terms of the GNU GPL.
<<less
Download (0.050MB)
Added: 2007-08-09 License: GPL (GNU General Public License) Price:
806 downloads
Iris Video Conversion Utility 0.75

Iris Video Conversion Utility 0.75


Iris is a video conversion utility in C++ that works as a front-end to mencoder. more>>
Iris is a video conversion utility in C++ that works as a front-end to mencoder. Iris Video Conversion Utility can run in command-line or graphical modes and currently supports conversion to DVD MPEG, DivX AVI and VCD MPEG
This software intends to ease video conversion to common formats.
Help Wanted / TODO
- Cancel button does not always work
- More output formats
- Reset values for command-line format paramater
- re-work stderr redirection
- catch and identify mencoder conditions
<<less
Download (0.12MB)
Added: 2005-12-27 License: BSD License Price:
1401 downloads
The Sleep Scripting Project 2.1-b18

The Sleep Scripting Project 2.1-b18


The Sleep Scripting Project is a highly extendable scripting language for use in Java applications. more>>
Sleep is a perl inspired embed-able scripting language for Java applications.
Sleep source and binaries are released under the GNU Lesser General Public License.
Main features:
- Perl inspired language syntax
- Fast execution / small runtime size (170 KB)
- Parsed scripts can be serialized
- Easy API for making application data structures / functionality available to scripters
- Access, create, and query Java objects from Sleep scripts
- Full documentation for application developers and end-user scripters
Enhancements:
- Scalar reference sugar was added for moving scalars between scopes
- The backtick operator was added to spawn an external program (a la Perl).
- Java method resolution was updated to handle byte and char arrays better.
- Set functions now rely on scalar identity for union, intersect, and difference.
- Class/package importing is now more verbose about errors.
<<less
Download (0.18MB)
Added: 2007-07-05 License: LGPL (GNU Lesser General Public License) Price:
841 downloads
Video::Info 0.993

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

<<less
Download (0.62MB)
Added: 2006-07-20 License: Perl Artistic License Price:
1197 downloads
DV Video Assembler 0.93

DV Video Assembler 0.93


DV Video Assembler allows you to append multiple Sony DV files. more>>
This application is particularly useful for owners of digital DV video cameras and other people who use the Sony DV video format for high quality video production.

DV Assembler allows you to append multiple Sony DV files with nice looking transition effects for both audio and video. Multiple transition effects are supported, like cross-fade, zoom, blur and a flash effect.

I created DV Assembler because there are no user friendly video editing applications for Linux. Yes, Kino is promising, but its user interface is still a mess and development is slow.

DV Assembler only touches the head and tail parts of the original video files that are needed to create the transition effects. The rest of the video is left untouched, which means zero quality loss.

DV Assembler can also be used to generate video editing scripts that can be run without KDE and Kommander.

<<less
Download (0.023MB)
Added: 2005-09-21 License: GPL (GNU General Public License) Price:
1498 downloads
PSP Video Converter 0.1

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.

<<less
Download (0.033MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
704 downloads
Video::Info::MPEG 0.993

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.

<<less
Download (0.62MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1195 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5