Projects tagged ‘audio’, ‘ffmpeg’, and ‘video’


Jump to tag:

Projects tagged ‘audio’, ‘ffmpeg’, and ‘video’

Filtered by Project Tags audio ffmpeg video

Refine results Project Tags media (7) multimedia (6) c (5) java (3) player (3) windowsmobile (3) multi-platform (2) converter (2) php (2) flv (2) qt (2) linux (2)

[16 total ]

23 Users
   

xu‧ggle (zŭ' gl) v. To freely encode, decode, and experience audio and video. With Xuggle you can write Java programs that decode or encode video. It incorporates FFMPEG, but adds a simpler ... [More] interface that is safe to use from Java-like languages (e.g. garbage collection) and tries hard to make sure usage of FFMPEG features doesn't crash a JVM. [Less]
Created 11 months ago.

2 Users
 

A multimedia processing and authoring framework and a video playout server for television broadcasting.
Created about 1 year ago.

1 Users

Open Images is a platform to upload, edit and publish video, audio and images. Based on MMBase it aims to offer online access to a selection of archive material to stimulate creative reuse, including ... [More] remixing of archive material in new works. Open Images also supports interlinking with other data sources (like Wikipedia), allowing the easy creation of mash ups. Access to the content will be based on the Creative Commons model, which proposes a middle way to rights management, rather than the extremes of pure public domain or reservation of all rights. The projects ‘open’ nature is underscored by adapting open formats and using open source software for its infrastructure. The project is still in its development phase but a first release is expected within a few weeks (mid september 2009). [Less]
Created 3 months ago.

1 Users

AVbin is a thin wrapper around FFmpeg, providing binary compatibility for applications and languages that need it. DetailsFFmpeg is a collection of audio and video codecs widely used in projects ... [More] such as mplayer, xine, gstreamer and VLC. It is under continuous development; so much so that its developers rarely provide a release, and SVN snapshots of the library must be statically linked to avoid version incompatibilities. AVbin allows programs that require dynamic linkage to use FFmpeg. It does this by providing an accurate version number within the shared library, allowing applications to select the appropriate data structures and functions to use at runtime, and a simplified interface with an unchanging ABI to the most common decoding functionality within FFmpeg. AVbin is distributed as a single dynamic library (.so on Linux, .dylib on Mac OS X, and .dll on Windows) that depends on no other files or installations. This eliminates the many complexities of building FFmpeg on platforms other than Linux; however you can still build it from source if you prefer. For usersDownload the appropriate binary package from the downloads page. Windows users, this is avbin-win32-5.zip Mac OS X users, this is avbin-darwin-universal-5.zip Linux users, this is either avbin-linux-x86-32-7.tar.gz or avbin-linux-x86-64-7.tar.gz Inside the archive you will find a single shared library, which needs to be copied into the appropriate directory for your system. Details can be found in the accompanying readme file. For developersYou can use AVbin in one of two ways. Linking against the avbin shared library provides all libavcodec, libavutil and libavformat functions. You can use the avbin_get_ffmpeg_revision function to determine the exact version of FFmpeg that has been linked, and use the appropriate data structures and functions. Because the FFmpeg interface changes quite quickly, AVbin also provides a simpler interface that is guaranteed to be backward and forward compatible with future releases. The source release contains a header file and HTML documentation for this interface. [Less]
Created 12 months ago.

0 Users

Standards based, object oriented framework that's easily expanded with themes, additional data display types, file formats, what have you. DOM-based output engine almost guarantees valid XHTML output. ... [More] Runs currently on a single WAMP host. Features in finished versions will include: Integrated user auth with multiple access levels Personal blog, homepage, forum, messaging, chat rooms per-user Easy admin/moderation system Easy plugin-type expansion architecture Templating system Configurable user HTML filtering Automatic generation of podcasts, feeds, site maps and other metadata FLV format video conversion for uploads with FFMPEG [Less]
Created 12 months ago.

0 Users

GUI frontend for ffmpeg written in java
Created 12 months ago.

0 Users

To give everyone the ability to personalize their own media experience with total simplicity and limitless possibility. For more information please check out the website.
Created 7 months ago.

0 Users

Collection of platform independent C++ libraries for computer graphics, digital audio, video playback, font rendering, concurrent programming, networking, linear algebra, and XML serialization.
Created about 1 year ago.

0 Users

This library is designed to simplify ffmpeg for use in media player applications written in pure C. It is thread safe, very fast, and has a pluggable architecture for output renderers for both audio ... [More] and video streams. This library does NOT remote control mplayer, or other engines, it is stand alone with libavcodec and libavformat making it very easy to tightly implement a media player into your application. Usage is very simple: mp_t *mp; mp = mp_new(); mp_load(mp, "filename.avi"); if (mp_num_streams(mp, CODEC_TYPE_AUDIO) > 0) mp_setup_stream(mp, 0, PLAYER_AUDIO_ALSA, NULL); if (mp_num_streams(mp, CODEC_TYPE_VIDEO) > 0) mp_setup_stream(mp, 0, PLAYER_VIDEO_XV , NULL); mp_open(mp); mp_play(mp); mp_wait(mp); mp_close(mp); mp_free(mp);Currently four renderers are supported, ALSA, XV, DirectFB and OpenGL via GTK+, though it is not hard to implement your own renderer. Renderers are very simple to implement, for audio all you have to do is define the functions: new, free, open, close, getdelay, write, pause, resume and call the macro: DEFINE_AUDIO_RENDERER(PLAYER_AUDIO_FOOBAR, new, free, open, close, getdelay, write, pause, resume) It is very similar for Video. Example console output I: Found card: HDA NVidia I: Opened codec "mp2" for stream 1 I: Using renderer "PLAYER_AUDIO_ALSA" for stream 1 I: Found 24bit TrueColor I: Opened codec "mpeg2video" for stream 0 I: Using renderer "PLAYER_VIDEO_XV" for stream 0 I: Waiting for streams to be primed I: Waiting for stream 0 to become ready I: Aspect Ratio: 1.333333 I: Frame Size: 720x480 I: Display Size: 640x480 I: Telling the renderer to initialize it's buffers W: Hardware can not pause I: Opened audio device (rate = 48000, channels = 2) I: Signal stream 1 primed I: Signal stream 0 primed I: Stream 0 is primed I: Syncing clock to audio stream 1 I: Waiting for stream 1 to become ready I: Stream 1 is primed I: All streams primed and ready to go I: Stream 0 started I: Stream 1 started I: Finished demuxing I: Waiting for the video queue to be emptied I: Telling the renderer to free it's buffers I: Demuxer finished I: Joining stream 0 I: Joining stream 1 [Less]
Created about 1 month ago.

0 Users

This class is a wrapper around the FFmpeg, FLVTools2 and Mencoder programs to allow PHP developers to manipulate and convert video files in any easy to use object oriented way. It also currently ... [More] provides FFmpeg-PHP emulation in pure PHP so you wouldn't need to compile and install the module. Note, it isn't intended as a FFmpeg-PHP replacement, only an alternative solution and it is recommended that if you make heavy use of the FFmpeg-PHP functionality you should install the module as it is more efficient. PHPVideoToolkit is pretty much the only video/audio class that you will need from now on. It performs several types of manipulation operations that include video format conversion, extract video frames into separate image files, assemble a video stream from a set of separate video images, extract audio from video, watermark videos and extracted frames. Several parameters can also be configured like the output video file format (which can be Flash video or any other supported by ffmpeg), video and audio bit rate and sample rate, video dimensions and aspect ratio. It can also retrieve information about the media file, such as duration, bitrate, framerate, format, dimensions, display aspect ratio, pixel aspect ratio, audio stereo, audio frequency and audio format, without any other additional library such as ffmpeg-php. [Less]
Created about 1 year ago.