Main > Free Download Search >

Free ffmpeg software for linux

ffmpeg

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 86
FFmpeg 070309

FFmpeg 070309


FFmpeg is a complete solution to record, convert and stream audio and video. more>>
FFmpeg project is a complete solution to record, convert and stream audio and video. It includes libavcodec, the leading audio/video codec library.
FFmpeg is developed under Linux, but it can compiled under most operating systems.
Main features:
- ffmpeg is a command line tool to convert one video file format to another. It also supports grabbing and encoding in real time from a TV card.
- ffserver is an HTTP (RTSP is being developped) multimedia streaming server for live broadcasts. Time shifting of live broadcast is also supported.
- ffplay is a simple media player based on SDL and on the FFmpeg libraries.
- libavcodec is a library containing all the FFmpeg audio/video encoders and decoders. Most codecs were developped from scratch to ensure best performances and high code reusability.
- libavformat is a library containing parsers and generators for all common audio/video formats.
<<less
Download (MB)
Added: 2005-07-07 License: LGPL (GNU Lesser General Public License) Price:
884 downloads
 
Other version of FFmpeg
ffmpeg 1dark2x3d - ffmpeg is script for mostly videos and audios converter like 3gp for mobile or rm to mp3 for audio CD or any movie to MPG VCD. ffmpeg. ffmpeg is script for mostly videos and
License:GPL (GNU General Public License)
Download (MB)
998 downloads
Added: 2007-02-16
FFmpeg::Stream 6036

FFmpeg::Stream 6036


FFmpeg::Stream is an audio or video stream from a (multi)media file. more>>
FFmpeg::Stream is an audio or video stream from a (multi)media file.

SYNOPSIS

$ff = FFmpeg->new(); #see FFmpeg
#...
$sg = $ff->create_streamgroup(); #see FFmpeg
$st = ($sg->streams())[0]; #this is a FFmpeg::Stream

FFmpeg::Stream objects are not instantiated. Rather, objects are instantiated from FFmpeg::Streams subclasses FFmpeg::Stream::Video for video streams, FFmpeg::Stream::Audio for audio streams, and FFmpeg::Stream::Data for streams containing neither audio nor video data. Streams identified in the file whose content type cannot be determined are represented by FFmpeg::Stream::Unknown objects.

Access FFmpeg::Stream objects using methods in FFmpeg::StreamGroup. See FFmpeg::StreamGroup for more information.

This class has attributes applicable to any stream type in a multimedia stream, or stream group. FFmpeg-Perl represents multimedia stream group information in a FFmpeg::StreamGroup object, which is a composite of FFmpeg::Stream objects.

FFmpeg::Stream objects dont do much. They just keep track of the media streams ID within the multimedia stream group, and hold an instance to a FFmpeg::Codec object if the codec of the stream was deducible. See FFmpeg::Codec for more information about how codecs are represented.

<<less
Download (0.90MB)
Added: 2006-09-21 License: Perl Artistic License Price:
1132 downloads
FFmpeg::FileFormat 6036

FFmpeg::FileFormat 6036


FFmpeg::FileFormat is a multimedia file format supported by FFmpeg (eg avi, mov, mpeg, mp3, &c). more>>
FFmpeg::FileFormat is a multimedia file format supported by FFmpeg (eg avi, mov, mpeg, mp3, &c).

SYNOPSIS

$ff = FFmpeg->new(); #see FFmpeg
$xx = $ff->file_format(mov);
#...do something with $xx

Objects of this class are not intended to be instantiated directly by the end user. Access FFmpeg::FileFormat objects using "file_format()" in FFmpeg or "filee_formats()" in FFmpeg.

Instances of this class represent a file formats supported by FFmpeg-C. If a file format exists, it means that FFmpeg-C can use it to do at least one of:

read files of this type
write files of this type

Call "can_read()" and "can_write()" to see what functionality is supported for a given file format.

<<less
Download (1.8MB)
Added: 2006-11-09 License: Perl Artistic License Price:
630 downloads
FFmpeg::StreamGroup 6036

FFmpeg::StreamGroup 6036


FFmpeg::StreamGroup is a group of related media streams, typically encapsulated in a single file. more>>
FFmpeg::StreamGroup is a group of related media streams, typically encapsulated in a single file.

SYNOPSIS

$ff = FFmpeg->new() #see FFmpeg;
#...
$sg = $ff->build_streamgroup();

Objects of this class are not intended to be instantiated directly by the end user. Access FFmpeg::StreamGroup objects using methods in FFmpeg. Refer to FFmpeg for more information.

This is a composite class of FFmpeg::Stream objects. A StreamGroup in most cases maps directly to a file, but it is also possible that it can represent data coming over a socket (eg HTTP), filehandle (eg STDIN), or a peripheral device (eg a TV tuner card).
A media stream, represented by the FFmpeg::Stream class is never created without a parent stream group. Metadata that may be attached to a stream is always attached to the group which contains the stream.

An example of this is an MP3 file which has been ID3 "tagged". Metadata regarding the MP3 audio data in the file, such as year of recording, artist name, album name, and genre are attached to a FFmpeg::StreamGroup rather than onto the FFmpeg::Stream object representing the audio data itself.

The FFmpeg::StreamGroup object is useful not only for retrieving stream group metadata, but also for inspecting the component streams of the group. See "streams()" for details.

This class also has rudimentary support for transcoding, in the form of a "frame grab". See "capture_frame()" for details.

<<less
Download (1.8MB)
Added: 2006-11-13 License: Perl Artistic License Price:
1077 downloads
FFmpeg::Stream::Video 5704

FFmpeg::Stream::Video 5704


FFmpeg::Stream::Video is a video stream from a (multi)media stream group. more>>
FFmpeg::Stream::Video is a video stream from a (multi)media stream group.

SYNOPSIS

$ff = FFmpeg->new(); #see FFmpeg
#...
$sg = $ff->create_streamgroup(); #see FFmpeg
$st = ($sg->streams())[0]; #this is a FFmpeg::Stream

Objects of this class are not intended to be instantiated directly by the end user. Access FFmpeg::Stream::Video objects using methods in FFmpeg::StreamGroup. See FFmpeg::StreamGroup for more information.

This class represents a video stream in a multimedia stream group. General stream attributes can be found in the FFmpeg::Stream class.

<<less
Download (0.94MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
690 downloads
FFmpeg::Stream::Audio 6036

FFmpeg::Stream::Audio 6036


FFmpeg::Stream::Audio is an audio stream from a (multi)media stream group. more>>
FFmpeg::Stream::Audio is an audio stream from a (multi)media stream group.

SYNOPSIS

$ff = FFmpeg->new(); #see FFmpeg
#...
$sg = $ff->create_streamgroup(); #see FFmpeg
$st = ($sg->streams())[0]; #this is a FFmpeg::Stream

Objects of this class are not intended to be instantiated directly by the end user. Access FFmpeg::Stream::Audio objects using methods in FFmpeg::StreamGroup. See FFmpeg::StreamGroup for more information.

This class represents an audio stream in a multimedia stream group, and has audio-specific attributes. General stream attributes can be found in the FFmpeg::Stream class.

<<less
Download (1.8MB)
Added: 2007-04-23 License: GPL (GNU General Public License) Price:
546 downloads
ffmpeg-php extension 0.5.0

ffmpeg-php extension 0.5.0


ffmpeg-php is an extension for PHP that adds an easy to use object-oriented API for retrieving information from movies and audio more>>
ffmpeg-php is an extension for PHP that adds an easy to use object-oriented API for retrieving information from movies and audio files.
It has methods for returning frames from movie files as images that can be manipulated using PHPs image functions.
This works well for automatically creating thumbnail images from movie files. ffmpeg-php is also useful for reporting the duration and bitrate of audio files (mp3, wma...). ffmpeg-php can access many of the formats supported by ffmpeg.
Main features:
- Simple object oriented interface.
- Has methods to grab frames from movie files and return them as images that can be manipulated using PHPs built-in image functions. This is great for automatically creating thumbnails for movie files.
- Has the ability to use ffmpegs excellent resampling and cropping features on returned images.
- Provides access to data from mp3 files such as duration, bitrate and track meta information.
<<less
Download (1.5MB)
Added: 2006-09-30 License: GPL (GNU General Public License) Price:
1139 downloads
GStreamer FFmpeg Plug-in 0.10.2

GStreamer FFmpeg Plug-in 0.10.2


GStreamer FFmpeg plug-in contains one plugin with a set of elements that use the FFmpeg library code. more>>
GStreamer FFmpeg plug-in contains one plugin with a set of elements that use the FFmpeg library code. It contains most popular decoders as well as very fast colorspace conversion elements.
GStreamer is a library that allows the construction of graphs of media-handling components, ranging from simple Ogg/Vorbis playback to complex audio (mixing) and video (non-linear editing) processing.
Applications can take advantage of advances in codec and filter technology transparently. Developers can add new codecs and filters by writing a simple plugin with a clean, generic interface.
GStreamer is released under the LGPL.
Main features:
Multiplatform
- GStreamer has been ported to a wide range of operating systems, processors and compilers. This include but are not limited to Linux on i86,PPC, ARM using GCC. Solaris on x86 and SPARC using both GCC and Forte, MacOSX, Microsoft Windows using MS Visual Developer and IBM OS/400.
Comprehensive Core Library
- Graph-based structure allows arbitrary pipeline construction
- Based on GLib 2.0 object model for object-oriented design and inheritance
- Small core library of less than 150KB, about 10 K lines of code
- Pluggable scheduling system capable of dealing with most pipeline structures
- Multi-threaded pipelines are trivial and transparent to construct
- Clean and simple API for both plugin and application developers
- Extremely lightweight data passing means very high performance/low latency
- Complete debugging system for both core and plugin/app developers
- Clocking to ensure global inter-stream synchronization
Intelligent Plugin Architecture
- Dynamically loaded plugins provide elements and media types, demand-loaded via an XML registry, similar to ld.so.cache
- Element interface handles all known types of sources, filters, sinks
- Capabilities system allows verification of element compatibility using MIME types and media-specific properties
- Autoplugging uses capabilities system to complete complex paths automatically
- Pipelines can be saved to XML and loaded back to working state
- Resource friendly plugins dont waste RAM
Extensive Development Tools
- Graphical editor allows pipelines to be built quickly, run, and saved as XML
- gst-launch command-line tool enables even quicker prototyping and testing, similar to ecasound
- All tools written as libraries to allow easy reuse
- A lot of documentation, including partially completed manual and plugin writers guide
- Large selection of test programs and example code
- Access to GStreamer API with various programming language
<<less
Download (3.0MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1061 downloads
Frontend for ffmpeg2theora 2.0

Frontend for ffmpeg2theora 2.0


Frontend for ffmpeg2theora is a graphical user interface for tool ffmpeg2theora. more>>
Frontend for ffmpeg2theora is a graphical user interface for tool ffmpeg2theora. Frontend for ffmpeg2theora converts any video which ffmpeg can decode into Ogg/Theora format.

For full readme and translations, please visit my homepage

Build instructions:

At first, unpack downloaded archive (e.g. using midnight commander) and move to program directory (ffmpeg2theora_fe). This program uses build system qmake. Default installation path is set to /usr/bin To change it, edit line DESTDIR in project file ffmpeg2theora_fe.pro Now, it is time to generate Makefile. Simply run

qmake -o Makefile ffmpeg2theora_fe.pro
su -c "make"

To uninstall program, run
su -c "make distclean"

<<less
Download (0.030MB)
Added: 2007-03-19 License: GPL (GNU General Public License) Price:
953 downloads
LibMPEG3 1.7

LibMPEG3 1.7


LibMPEG3 is a library for MP3, MP2, AC3, MPEG-1, and MPEG-2 video decoding. more>>
Libmpeg3 supports advanced editing and manipulation of MPEG streams. MPEG is normally a last mile distribution format but with libmpeg3 you can edit it like a production format. Unless you have a need for MPEG editing and copying, youre better off using a consumer library like FFMPEG.
Libmpeg3 is primarily a supporting library for Cinelerra. It supports all of the nonstandard operations Cinelerra needs. Libmpeg3 provides a uniform front end for a large number of the MPEG formats used in HDTV broadcasting. It decodes:
- MPEG-1 Layer II Audio
- MPEG-1 Layer III Audio
- MPEG-2 Layer III Audio
- MPEG-1 program streams
- MPEG-2 program streams
- MPEG-2 transport streams
- AC3 Audio
- MPEG-2 Video
- MPEG-1 Video
- IFO files
- VOB files
Now the good news. It can read the MPEG exports from Cinelerra.
A table of contents feature allows it to seek with frame accuracy regardless of whether the footage has timecode or not, or whether the timecode is contiguous. Also included are utilities for stream extraction, format querying, and copying.
Enhancements:
- Table of contents sample count improvements.
- Migration to GCC 4.1.
<<less
Download (0.61MB)
Added: 2006-07-03 License: GPL (GNU General Public License) Price:
1217 downloads
FFpocket 0.6.5

FFpocket 0.6.5


FFpocket is a tool for using ffmpegs features. more>>
FFpocket is a tool for using ffmpegs features. FFpocket carries out the tasks of frame decoding from a video file, audio decoding from a multimedia file (video/audio) precise time/frame seeking including b-frames, audio downsampling and special minmax averaging.
The source code is intented to be simple, human-readable and free of memory leaks. It can be used as a shared library by larger projects that want to incorporate multimedia features.
Main features:
- Frame decoding for a video file
- Audio decoding for a multimedia file (video/audio)
- Precise frame/time seeking in the multimedia files (including b-frames)
- Audio downsampling and special minmax averaging, refered to as caching
Enhancements:
- This release adds preliminary Windows Vista support and a newer ffmpeg backend.
- Bugfixes include handling A/V time delay, better memory handling, and better exception handling for unsupported media files.
<<less
Download (0.014MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
958 downloads
MPEG4ip Tools 1.5.05

MPEG4ip Tools 1.5.05


MPEG4IP provides an end-to-end system to explore streaming multimedia. more>>
MPEG4IP provides an end-to-end system to explore streaming multimedia. The package includes many existing open source packages and the "glue" to integrate them together. This is a tool for streaming video and audio that is standards-oriented and free from proprietary protocols and extensions.

Provided are a live MPEG-4/H.261/MPEG-2/H.263 MP3/AAC/AMR broadcaster and file recorder, command line utilities such as an MP4 file creator and hinter, and an player that can both stream and playback from local file.

Our development is focused on the Linux platform, and has been ported to Windows, Solaris, FreeBSD, BSD/OS and Mac OS X, but it should be relatively straight-forward to use on other platforms. Many of the included packages are multi-platform already. Mp4live only works on Linux.

This code is not intended for end users, and does not contain executables. Please read all the legal information to determine if it is suitable for you.

File formats:
avi, mp4, limited .mov, .mpg (transport and program streams), .wav, raw aac, raw mp3, raw mp4v, raw .h264

Video codecs:
mpeg-4 (xvid, xvid-1.0, ISO reference), mpeg1/2 (libmpeg3, mpeg2dec), H.261, YUV (i420 raw)
Through ffmpeg: h.263, Sorenson, some MJPEG, H.264

Audio Codecs:
aac (faad, faad2 with seperate download), mp3, celp, ac3 (with seperate download), raw PCM, G.711 alaw and ulaw
Through ffmpeg: AMR NB, AMR WB, G.711 alaw and ulaw

Streaming capability:
RTSP, SDP, RTP (rfc 3551 for raw audio, 2250 for mpeg1/2 audio and video, 3016 for mpeg4 video, 3119 for mp3, 3640 for aac/celp audio, 3267 for AMR octet-aligned only, 3984 for h.264), mpeg2 transport streams (mpeg2 video, mp3 and ac3 audio), both multicast and streaming.
Supports http fetch of sdp files.

Other features:
1/2, double and full screen video, change aspect ratio of video
Audio should be able to convert channels and format to match any hardware, but not frequency.

IsmaCryp 1.0 specification is supported for local playback and streaming playback.
<<less
Download (0.71MB)
Added: 2006-11-17 License: Freeware Price:
1077 downloads
MPEG4ip Player 0.9.8

MPEG4ip Player 0.9.8


MPEG4IP provides an end-to-end system to explore streaming multimedia. more>>
MPEG4IP provides an end-to-end system to explore streaming multimedia. The package includes many existing open source packages and the "glue" to integrate them together. This is a tool for streaming video and audio that is standards-oriented and free from proprietary protocols and extensions.

Provided are a live MPEG-4/H.261/MPEG-2/H.263 MP3/AAC/AMR broadcaster and file recorder, command line utilities such as an MP4 file creator and hinter, and an player that can both stream and playback from local file.

Our development is focused on the Linux platform, and has been ported to Windows, Solaris, FreeBSD, BSD/OS and Mac OS X, but it should be relatively straight-forward to use on other platforms. Many of the included packages are multi-platform already. Mp4live only works on Linux.

This code is not intended for end users, and does not contain executables. Please read all the legal information to determine if it is suitable for you.

File formats:
avi, mp4, limited .mov, .mpg (transport and program streams), .wav, raw aac, raw mp3, raw mp4v, raw .h264

Video codecs:
mpeg-4 (xvid, xvid-1.0, ISO reference), mpeg1/2 (libmpeg3, mpeg2dec), H.261, YUV (i420 raw)
Through ffmpeg: h.263, Sorenson, some MJPEG, H.264

Audio Codecs:
aac (faad, faad2 with seperate download), mp3, celp, ac3 (with seperate download), raw PCM, G.711 alaw and ulaw
Through ffmpeg: AMR NB, AMR WB, G.711 alaw and ulaw

Streaming capability:
RTSP, SDP, RTP (rfc 3551 for raw audio, 2250 for mpeg1/2 audio and video, 3016 for mpeg4 video, 3119 for mp3, 3640 for aac/celp audio, 3267 for AMR octet-aligned only, 3984 for h.264), mpeg2 transport streams (mpeg2 video, mp3 and ac3 audio), both multicast and streaming.
Supports http fetch of sdp files.

Other features:
1/2, double and full screen video, change aspect ratio of video
Audio should be able to convert channels and format to match any hardware, but not frequency.

IsmaCryp 1.0 specification is supported for local playback and streaming playback.
<<less
Download (0.60MB)
Added: 2006-11-17 License: Freeware Price:
1076 downloads
MplayerXP 0.6.2

MplayerXP 0.6.2


MplayerXP is a mplayer with extra performance. more>>
MplayerXP is a branch of the well known mplayer (http://mplayerhq.hu) which is based on the new (thread based) core. MplayerXP project was designed for x86 architecture but was ported on DecAlpha, SUN, PowerPC.
The new core provides better CPU utilization and excellently improves performance of video decoding. Main goal of this project is to get monotonous CPU loading during movie playback.
This project is a media player for *nix systems. It was designed for Linux, but works on other unices like: FreeBSD, QNX.
MplayerXP project was designed for x86 architecture but was ported on DecAlpha, SUN, PowerPC.
Enhancements:
- synchronized libloader with mplayerhq
- updated ffmpeg codecs (fixes some lacks of prev release)
- added support for new codecs
- fixed segfault in MPC demuxer
<<less
Download (2.50MB)
Added: 2007-04-07 License: GPL (GNU General Public License) Price:
565 downloads
KFilm 0.0.2

KFilm 0.0.2


KFilm is an non-linear Video Editor that runs on a **ix System. more>>
Video cutting software with QT/KDE uses SDL/ffmpeg an reads every FIle that ffmpeg reads -cut /merge video -non linear VideoEditing

<<less
Download (0.72MB)
Added: 2005-08-19 License: GPL (GNU General Public License) Price:
1528 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5