quicktime
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 54
Added: 2009-06-18 License: LGPL Price: FREE
11 downloads
Other version of Libquicktime
License:LGPL (GNU Lesser General Public License)
openquicktime 2.0a1
OpenQuicktime aims to be a portable library for handling Apple?s QuickTime? popular media files on Unix-like environments. more>> <<less
Download (0.71MB)
Added: 2006-07-14 License: GPL (GNU General Public License) Price:
1200 downloads
Quicktime for Linux 2.2
Quicktime for Linux is Quicktime support for Unix. more>>
Quicktime for Linux lets you read and write Quicktime movies using several codecs. There are many Quicktime libraries for Linux; this one emphasizes reliability and accuracy while not stressing economy.
Also included are frontends to several of the codecs which dont require Quicktime encapsulation, header dump, chunk extraction, and recovery tools.
Enhancements:
- Selectively caching GOP frames to speed up reverse playback. Library upgrades for x264 and ffmpeg.
<<lessAlso included are frontends to several of the codecs which dont require Quicktime encapsulation, header dump, chunk extraction, and recovery tools.
Enhancements:
- Selectively caching GOP frames to speed up reverse playback. Library upgrades for x264 and ffmpeg.
Download (28.5MB)
Added: 2006-07-03 License: LGPL (GNU Lesser General Public License) Price:
1251 downloads
Quicktime 4 for Linux 2.2
Access uncompressed Quicktime movies the easy way. more>> Quicktime 4 Linux was the first convenient way to read and write uncompressed Quicktime movies on Linux. Today Quicktime 4 Linux is intended mainly for content creation and uncompressed movies. These usually arise during the production phase and not the distribution phase of a movie. It has improvements in colormodel support, bit depth, accuracy, reliability, and codecs, while not stressing economy.
FEATURES
Quicktime 4 Linux is the foundation for many of the features of Cinelerra. It includes several front ends to encoders and decoders which are used by applications directly.
DV FRONT END
Included in Quicktime for Linux is a front end for the libdv engine. This front end was started when libdv was really crude. Since then, libdv has gotten better but the abstraction layer remains.
JPEG FRONT END
A parallel JPEG engine using libjpeg is implemented with a front end. This uses 2 processors for field based JPEG compression and 1 processor for frame based compression. It also supports some common marker operations.
COLORSPACE CONVERSION
A general colorspace converter implements colorspace conversion with nearest neighbor scaling for the large number of nonstandard colorspaces that Cinelerra uses.
STEP UP TO THE MICROSOFT
Quicktime 4 Linux reads and writes some AVI files. AVI support has grown over the years, since this is of course the standard on Linux, but is continuously evolving since AVI is not consistent. Currently it reads and writes reasonably compatible AVI files less than or greater than 2GB. The AVI mode supports MJPG, DV, and some compressed codecs.
CODECS
Be aware of one thing: Quicktime for Linux wont read any of the movies you download from the internet. Quicktime is a wrapper for many different kinds of compression formats. What you knew as "Quicktime 4", "Quicktime 5", "Quicktime 6", are really different distributions of compression formats. The codecs we support are mainly uncompressed.<<less
Download (7.59MB)
Added: 2009-04-24 License: Freeware Price: Free
204 downloads
Audio::M4P::QuickTime 0.30
Audio::M4P::QuickTime is a Perl module for m4p/mp4/m4a Quicktime audio files. more>>
Audio::M4P::QuickTime is a Perl module for m4p/mp4/m4a Quicktime audio files.
Perl manipulation of Quicktime Audio files, including protected audio M4P files. Allows extraction and modification of meta information in Apple QuickTime AAC/m4a music files.
About QuickTime File Structure and Atoms
M4P is a QuickTime protected audio file format. It is composed of a linear stream of bytes which are segmented into units called atoms. Some atoms may be containers for other atoms. iTunes Music Store M4P music files are Quicktime audio files which are encrypted using a combination of information in the files drms atom and information which is commonly stored on the computer or audio player.
SYNOPSIS
use Audio::M4P::QuickTime;
my $mp4file = "file.m4p";
my $qt = new Audio::M4P::QuickTime(file => $mp4file);
my $tags = $qt->GetMetaInfo;
print "Artist is $tags->{ARTIST}n" if $tags->{ARTIST};
<<lessPerl manipulation of Quicktime Audio files, including protected audio M4P files. Allows extraction and modification of meta information in Apple QuickTime AAC/m4a music files.
About QuickTime File Structure and Atoms
M4P is a QuickTime protected audio file format. It is composed of a linear stream of bytes which are segmented into units called atoms. Some atoms may be containers for other atoms. iTunes Music Store M4P music files are Quicktime audio files which are encrypted using a combination of information in the files drms atom and information which is commonly stored on the computer or audio player.
SYNOPSIS
use Audio::M4P::QuickTime;
my $mp4file = "file.m4p";
my $qt = new Audio::M4P::QuickTime(file => $mp4file);
my $tags = $qt->GetMetaInfo;
print "Artist is $tags->{ARTIST}n" if $tags->{ARTIST};
Download (0.80MB)
Added: 2006-06-19 License: Perl Artistic License Price:
1225 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
Image::ExifTool::QuickTime 6.42
Image::ExifTool::QuickTime is a Perl module to read QuickTime and MP4 meta information. more>>
Image::ExifTool::QuickTime is a Perl module to read QuickTime and MP4 meta information.
SYNOPSIS
This module is used by Image::ExifTool
This module contains routines required by Image::ExifTool to extract information from QuickTime and MP4 video files.
<<lessSYNOPSIS
This module is used by Image::ExifTool
This module contains routines required by Image::ExifTool to extract information from QuickTime and MP4 video files.
Download (1.0MB)
Added: 2006-11-16 License: Perl Artistic License Price:
1082 downloads
jBitcollider 0.8
jBitcollider is an application which can be used to lookup/submit files to Bitzi. more>>
jBitcollider is an application which can be used to lookup/submit files to Bitzi.
The Bitcollider utility allows users to uniquely identify and submit files to Bitzis community metadatabase project.
The Bitcollider can be used to identify any local file and has support for extracting metadata from MP3, WAV, Vorbis, JPEG, PNG, GIF, AVI, MPEG-1, MPEG-2, and QuickTime files.
Users can quickly look up all the known information about the given file in Bitzis metadatabase.
Main features:
- Processes files larger than 2GB in size.
- Offers the graphical interface, and drag-and-drop Bitcolliding, on non-Windows systems for the first time.
- Improves reliability of submission via browser
<<lessThe Bitcollider utility allows users to uniquely identify and submit files to Bitzis community metadatabase project.
The Bitcollider can be used to identify any local file and has support for extracting metadata from MP3, WAV, Vorbis, JPEG, PNG, GIF, AVI, MPEG-1, MPEG-2, and QuickTime files.
Users can quickly look up all the known information about the given file in Bitzis metadatabase.
Main features:
- Processes files larger than 2GB in size.
- Offers the graphical interface, and drag-and-drop Bitcolliding, on non-Windows systems for the first time.
- Improves reliability of submission via browser
Download (1.1MB)
Added: 2007-03-15 License: Public Domain Price:
955 downloads
jMusic 1.5
jMusic provides a library of classes for generating and manipulating music. more>>
jMusic is a project designed to provide composers and software developers with a library of compositional and audio processing tools.
It provides a solid framework for computer-assisted composition in Java, and is also used for generative music, instrument building, interactive performance, and music analysis.
jMusic supports musicians with its familiar music data structure based upon note/sound events, and provides methods for organising, manipulating and analysing that musical data. jMusic scores can be rendered as MIDI or audio files for storage and later processing or playback in real-time.
jMusic can read and write MIDI files, audio files, XML files, and its own .jm files; there is real-time support for JavaSound, QuickTime and MIDIShare. jMusic is designed to be extendible, encouraging you to build upon its functionality by programming in Java to create your own musical compositions, tools, and instruments.
In a spirit of mutual collaboration, jMusic is provided free and is an open source project. jMusic is 100% Java and works on Windows, Mac OS, Linux, BSD, Solaris, or any other platform with Java support.
<<lessIt provides a solid framework for computer-assisted composition in Java, and is also used for generative music, instrument building, interactive performance, and music analysis.
jMusic supports musicians with its familiar music data structure based upon note/sound events, and provides methods for organising, manipulating and analysing that musical data. jMusic scores can be rendered as MIDI or audio files for storage and later processing or playback in real-time.
jMusic can read and write MIDI files, audio files, XML files, and its own .jm files; there is real-time support for JavaSound, QuickTime and MIDIShare. jMusic is designed to be extendible, encouraging you to build upon its functionality by programming in Java to create your own musical compositions, tools, and instruments.
In a spirit of mutual collaboration, jMusic is provided free and is an open source project. jMusic is 100% Java and works on Windows, Mac OS, Linux, BSD, Solaris, or any other platform with Java support.
Download (0.49MB)
Added: 2005-09-20 License: GPL (GNU General Public License) Price:
1496 downloads
Bitcollider 0.6.0
Bitcollider is an application which can be used to lookup/submit files to Bitzi. more>>
Bitcollider provides the bitcollider can be used to lookup/submit files to Bitzi.
The Bitcollider utility allows users to uniquely identify and submit files to Bitzis community metadatabase project.
The Bitcollider can be used to identify any local file and has support for extracting metadata from MP3, WAV, Vorbis, JPEG, PNG, GIF, AVI, MPEG-1, MPEG-2, and QuickTime files.
Users can quickly look up all the known information about the given file in Bitzis metadatabase.
Enhancements:
- The kzhash identifier used by Kazaa 2.6 and up is now calculated. (As a result, MAGNET links at Bitzi can include this identifier and work with Kazaa.)
- A video format plugin now extracts and submits information such as framerate, framesize, duration,bitrate, and codec from most AVI, MPEG1/2, and QuickTime videos.
- A problem in the original construction of the TigerTree hash value has been corrected. (Only values from updated software display at theBitzi website.)
- Calculation of MD5 and CRC32 values is now optional.
<<lessThe Bitcollider utility allows users to uniquely identify and submit files to Bitzis community metadatabase project.
The Bitcollider can be used to identify any local file and has support for extracting metadata from MP3, WAV, Vorbis, JPEG, PNG, GIF, AVI, MPEG-1, MPEG-2, and QuickTime files.
Users can quickly look up all the known information about the given file in Bitzis metadatabase.
Enhancements:
- The kzhash identifier used by Kazaa 2.6 and up is now calculated. (As a result, MAGNET links at Bitzi can include this identifier and work with Kazaa.)
- A video format plugin now extracts and submits information such as framerate, framesize, duration,bitrate, and codec from most AVI, MPEG1/2, and QuickTime videos.
- A problem in the original construction of the TigerTree hash value has been corrected. (Only values from updated software display at theBitzi website.)
- Calculation of MD5 and CRC32 values is now optional.
Download (0.10MB)
Added: 2007-03-18 License: Public Domain Price:
952 downloads
Scriptio 0-0
Scriptio is an open source framework for presenting animations and educational content in a rich online experience. more>>
Scriptio project is an open source framework for presenting animations and educational content in a rich online experience.
Featuring an easy-to-learn scripting language for fast prototyping and production-quality development, Scriptio is designed for rich Web 2.0 applications.
Scriptio is written in JavaScript, and exploits Ajax techniques. Ajax refers to tools and methods for creating interactive web applications. If accompanying narration or sound is needed, interfaces to Flash, QuickTime, and standard audio formats are supported.
Main features:
Intuitive scripting language
- The scripting language is a simple and easy to understand. It can also be extended since it is built in JavaScript.
Rich object set
- Text, images, rectangles, lines, and circles are supported. Input controls such as buttons, text entry fields, radio buttons, and checkboxes are used for created highly-interactive instructional presentations.
Multiple audio options
- If you need a music or narration soundtrack, interfaces for QuickTime and Flash are included. A Java applet that supports audio formats of Ogg, AU, and WAV has also been developed.
Authoring Tools
- An "author mode" gives valuable feedback as you work and develop your scripts.
<<lessFeaturing an easy-to-learn scripting language for fast prototyping and production-quality development, Scriptio is designed for rich Web 2.0 applications.
Scriptio is written in JavaScript, and exploits Ajax techniques. Ajax refers to tools and methods for creating interactive web applications. If accompanying narration or sound is needed, interfaces to Flash, QuickTime, and standard audio formats are supported.
Main features:
Intuitive scripting language
- The scripting language is a simple and easy to understand. It can also be extended since it is built in JavaScript.
Rich object set
- Text, images, rectangles, lines, and circles are supported. Input controls such as buttons, text entry fields, radio buttons, and checkboxes are used for created highly-interactive instructional presentations.
Multiple audio options
- If you need a music or narration soundtrack, interfaces for QuickTime and Flash are included. A Java applet that supports audio formats of Ogg, AU, and WAV has also been developed.
Authoring Tools
- An "author mode" gives valuable feedback as you work and develop your scripts.
Download (1.5MB)
Added: 2006-01-18 License: Other/Proprietary License Price:
1374 downloads
Tk::MultiMediaControls 1.0
Tk::MultiMediaControls is a Perl module to create media player control buttons. more>>
Tk::MultiMediaControls is a Perl module to create media player control buttons.
SYNOPSIS
$mmc = $parent->MultiMediaControls(-option => value, ... );
Create multimedia controls similar to that found on Apple applications like QuickTime, iMovie, iDVD, iTunes, etcetera. This mega-widget accepts a -buttons option that specifies a list of controller buttons, and a series of specialized options that bind callbacks to those buttons.
-buttons
A list of controller buttons: [ qw/ home rewind play stop fastforward / ]. You supply the callbacks that implement the above buttons, which nominally have this effect on the movie:
home - reset movie to first frame
rewind - play movie in fast reverse
play - a toggle: play movie at normal speed / pause movie
stop - stop movie (reset to first frame?)
fastforward - play movie in fast forward
-fastcommand
-fasthighlightcommand
-homecommand
-homehighlightcommand
-leftcommand
-pausecommand
-pausehighlightcommand
-playcommand
-playhighlightcommand
-rewindcommand
-rewindhighlightcommand
-rightcommand
-stopcommand
-stophighlightcommand
Callbacks that are invoked when control buttons are pressed or released. Callbacks that include the string highlight are invoked when Button-1 is pressed and held. With the exception of the -leftcommand and -rightcommand, all other callbacks are invoked when Button-1 is released.
Three keys have special meanings that parallel Apples bindings. The space bar (space) is bound to toggle the play/pause button. The left-arrow (Left) and right-arrow (Right) should, if possible, display the previous or next movie frame. Use -leftcommand and -rightcommand for this.
<<lessSYNOPSIS
$mmc = $parent->MultiMediaControls(-option => value, ... );
Create multimedia controls similar to that found on Apple applications like QuickTime, iMovie, iDVD, iTunes, etcetera. This mega-widget accepts a -buttons option that specifies a list of controller buttons, and a series of specialized options that bind callbacks to those buttons.
-buttons
A list of controller buttons: [ qw/ home rewind play stop fastforward / ]. You supply the callbacks that implement the above buttons, which nominally have this effect on the movie:
home - reset movie to first frame
rewind - play movie in fast reverse
play - a toggle: play movie at normal speed / pause movie
stop - stop movie (reset to first frame?)
fastforward - play movie in fast forward
-fastcommand
-fasthighlightcommand
-homecommand
-homehighlightcommand
-leftcommand
-pausecommand
-pausehighlightcommand
-playcommand
-playhighlightcommand
-rewindcommand
-rewindhighlightcommand
-rightcommand
-stopcommand
-stophighlightcommand
Callbacks that are invoked when control buttons are pressed or released. Callbacks that include the string highlight are invoked when Button-1 is pressed and held. With the exception of the -leftcommand and -rightcommand, all other callbacks are invoked when Button-1 is released.
Three keys have special meanings that parallel Apples bindings. The space bar (space) is bound to toggle the play/pause button. The left-arrow (Left) and right-arrow (Right) should, if possible, display the previous or next movie frame. Use -leftcommand and -rightcommand for this.
Download (0.48MB)
Added: 2006-12-27 License: Perl Artistic License Price:
1031 downloads
aKtion 0.4.1
aKtion! is a video player based on xanim. more>>
aKtion! is a video player based on xanim. It (xanim) supports many different file formats:
AVI animations.
Quicktime Animations.
FLI animations.
FLC animations.
IFF animations.
GIF87a and GIF89a files.
GIF89a animation extension support.
DL animations. Formats 1, 2 and most of 3.
Amiga MovieSetter animations(For those Eric Schwartz fans).
Utah Raster Toolkit RLE images and anims.
SGI Movie Format Files.
During a video playback, you can press the c key to capture the current frame being played. You dont need to pause the video, just press the c key. The frames will be saved in the "Output directory" (see the configuration dialog in the "Capture" tab), with the specified format. They will have the name of the current file followed by a number which indicates the capture order (e.g. "myVideo1.bmp myVideo2.bmp ...").
These are the install instructions:
1. Uncompress the aktion.tgz file in the usual way (try Ark ;-)
2. Go into the /aktion-0.4.1 directory.
3. Type "./configure"
4. Then "make"
5. And finally (as root) "make install"
Enhancements:
- fixed a mimetype bug in aktion.kdelnk
- updated portugese translation
- fixed a bug in trasnlations
<<lessAVI animations.
Quicktime Animations.
FLI animations.
FLC animations.
IFF animations.
GIF87a and GIF89a files.
GIF89a animation extension support.
DL animations. Formats 1, 2 and most of 3.
Amiga MovieSetter animations(For those Eric Schwartz fans).
Utah Raster Toolkit RLE images and anims.
SGI Movie Format Files.
During a video playback, you can press the c key to capture the current frame being played. You dont need to pause the video, just press the c key. The frames will be saved in the "Output directory" (see the configuration dialog in the "Capture" tab), with the specified format. They will have the name of the current file followed by a number which indicates the capture order (e.g. "myVideo1.bmp myVideo2.bmp ...").
These are the install instructions:
1. Uncompress the aktion.tgz file in the usual way (try Ark ;-)
2. Go into the /aktion-0.4.1 directory.
3. Type "./configure"
4. Then "make"
5. And finally (as root) "make install"
Enhancements:
- fixed a mimetype bug in aktion.kdelnk
- updated portugese translation
- fixed a bug in trasnlations
Download (0.16MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1197 downloads
Hachoir metadata 1.0
Hachoir metadata can extract metadata from archives. more>>
Hachoir metadata can extract metadata from archives (bzip2, gzip, zip, tar), audio (MPEG audio/MP3, WAV, Sun/NeXT audio, Ogg/Vorbis, MIDI, AIFF, AIFC, Real Audio), images (BMP, CUR, EMF, ICO, GIF, JPEG, PCX, PNG, TGA, TIFF, WMF, XCF), and video (ASF/WMV, AVI, Matroska, Quicktime, Ogg/Theora, Real Media).
It supports invalid or truncated files and Unicode text. It can remove duplicate values. Hachoir metadata project can also filter metadata according to priority.
Main features:
- Support invalid / truncated files
- Unicode compliant (charset ISO-8859-XX, UTF-8, UTF-16), convert string to your terminal charset
- Remove duplicate values (and if a string is a substring of another, just keep the longest one)
- Set priority to value, so its possible to filter metadata (option --level)
- Only depends on hachoir-parser (and not on libmatroska, libmpeg2, libvorbis, etc.)
Enhancements:
- This release reads the number of channels, bit rate, and sample rate, and computes the compression rate of Real Audio.
- It reads user comments of JPEG pictures.
- It computes the frame rate of Windows ANI.
- It normalizes language for ID3 and MKV.
- OLE2 and FLV extractors are now fault tolerant.
<<lessIt supports invalid or truncated files and Unicode text. It can remove duplicate values. Hachoir metadata project can also filter metadata according to priority.
Main features:
- Support invalid / truncated files
- Unicode compliant (charset ISO-8859-XX, UTF-8, UTF-16), convert string to your terminal charset
- Remove duplicate values (and if a string is a substring of another, just keep the longest one)
- Set priority to value, so its possible to filter metadata (option --level)
- Only depends on hachoir-parser (and not on libmatroska, libmpeg2, libvorbis, etc.)
Enhancements:
- This release reads the number of channels, bit rate, and sample rate, and computes the compression rate of Real Audio.
- It reads user comments of JPEG pictures.
- It computes the frame rate of Windows ANI.
- It normalizes language for ID3 and MKV.
- OLE2 and FLV extractors are now fault tolerant.
Download (0.047MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
841 downloads
Katiuska 0.7.6
Katiuska is a theora encoder frontend. more>>
Katiuska is a theora encoder frontend. It uses ffmpeg2theora, mencoder, the encoder_example that comes with the theora libs and a little gpl bash script that I found with google.
It can encode mostly any kind of video that ffmpeg and mencoder can (avi, mpeg4 and 2, quicktime etc).
Katiuska is also now a DVD ripping tool with an easy to use interface and default settings. Just select your audio and subtitle language if any and youre good to go.
This is my first app ever so it might not work for you at all.
Installation:
Just run ./setup.sh as root and then type "katiuska" to use it.
<<lessIt can encode mostly any kind of video that ffmpeg and mencoder can (avi, mpeg4 and 2, quicktime etc).
Katiuska is also now a DVD ripping tool with an easy to use interface and default settings. Just select your audio and subtitle language if any and youre good to go.
This is my first app ever so it might not work for you at all.
Installation:
Just run ./setup.sh as root and then type "katiuska" to use it.
Download (1.2MB)
Added: 2005-07-31 License: GPL (GNU General Public License) Price:
1547 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 quicktime 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