Main > Free Download Search >

Free save mms streams software for linux

save mms streams

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2600
CamStream 0.27

CamStream 0.27


CamStream is a collection of tools for webcams and other video-devices, enhancing your Linux system with multimedia video. more>>
CamStream project is a collection of tools for webcams and other video-devices, enhancing your Linux system with multimedia video. All written in C++ and with a nice GUI frontend. The interface is based on Qt, an excellent GUI framework.
The aim of this project is build a set of programs for:
- Webcamming, that is saving an image and uploading it to a server at regular intervals;
- Video conferencing;
- Webcam broadcast (including server);
- Recording movie clips (AVI, Quicktime) from a webcam (and playing them back);
- Using a webcam as a security camera.
Main features:
- Graphical user interface, it doesnt take command line arguments!
- View multiple image streams from webcams or TV cards.
- Change image size, brightness, contrast, etc. on the fly.
- Save images in a variety of formats.
- Include a timestamp in the image and/or the saved filename.
- Uploading images to a server with FTP.
- Take regular snapshots, or any moment you decide.
- All configuration settings are stored per device, not globally.
<<less
Download (3.8MB)
Added: 2006-12-29 License: GPL (GNU General Public License) Price:
1044 downloads
Save Scummer 002

Save Scummer 002


Save Scummer project is a Seven Day Roguelike written by Jeff Lait. more>>
Save Scummer project is a Seven Day Roguelike written by Jeff Lait.
This provides a windows and linux executable versions along with the source for those brave enough to try and build it from scratch. It also provides a linux and windows curses version for those allergic to graphics.
Main features:
- Intelligent "Do What I Mean" commands that reduce all possible actions to a single keystroke.
- Infinite undo to correct mistakes in pressing said single keystroke.
- Fight the fifty-two monsters from Letter Hunt and one new bonus monster.
- 1980 different weapons and 216 different spells!
- Play one of 8 races or 9 classes!
Enhancements:
- Added documentation about intent of this game and listed various non-bugs.
- Fixed a bug where the borg would attack enemies even when blind.
- Added an eXplore mode so you can take over and pilot the game manually. The correct key to hit isnt in the in-game documentation to encourage you to play it properly first.
<<less
Download (1.2MB)
Added: 2007-04-17 License: BSD License Price:
921 downloads
Streams 0.1.7

Streams 0.1.7


Streams is an I/O library designed to eventually replace the current I/O facilities based on using Handles. more>>
Streams is an I/O library designed to eventually replace the current I/O facilities based on using Handles. The main advantage is its strong modular design using typeclasses. It consists of small independent modules, each implementing one type of stream (file, memory buffer, pipe, etc.) or one part of common stream functionality (buffering, char encoding, locking, etc.).

3rd-party librarie can easily add new stream types and new common functionality. Other benefits of the new library include support for streams functioning in any monad, Hugs and GHC compatibility, high speed, and an easy migration path from the existing I/O library. It is heavily based on the HVIO module written by John Goerzen.

Simple Streams

The key concept of the lib is the Stream class, whose interface mimics familiar interface for Handles, just with "h" replaced with "v" in function names:

class (Monad m) => Stream m h where
vPutStrLn :: h -> String -> m ()
vGetContents :: h -> m String
vIsEOF :: h -> m Bool
vClose :: h -> m ()
....................

This means that you already know how to use any stream! The Stream interface currently has 8 implementations: a Handle itself, raw files, pipes, memory buffers and string buffers. Future plans include support for memory-mapped files, sockets, circular memory buffers for interprocess communication and UArray-based streams.
By themselves, these Stream implementations are rather simple.

Basically, to implement new Stream type, its enough to provide vPutBuf/vGetBuf operations, or even vGetChar/vPutChar. The latter way, although inefficient, allows us to implement streams that can work in any monad. StringReader and StringBuffer streams use this to provide string-based Stream class implementations both for IO and ST monads. Yes, you can use the full power of Stream operations inside the ST monad!
<<less
Download (0.23MB)
Added: 2006-11-28 License: BSD License Price:
1093 downloads
Streamsniff 0.03

Streamsniff 0.03


Streamsniff is a small command line tool that sniffs network traffic for stream URLs. more>>
Streamsniff is a command line tool that sniffs network traffic for stream urls. I built it because I got tired chasing stream urls hidden behind loads of html and javascript.

Run it as root, fire up your browser and start the stream you want to "expose". Streamsniff detects the initiation of rtsp, mms, icy and http streams, and performs a backtrace on http traffic to detect "playlist"-urls (stream metafiles).

Sample output showing ICY, RTSP and MMS urls and their playlist urls:

ICY : http://212.92.28.98:2002/
: http://real1.radio.hu/BartokG2.ram

RTSP: rtsp://rmlivev8.bbc.net.uk:554/farm/*/ev7/live24/6music/live/6music_dsat_g2.ra
: http://www.bbc.co.uk/6music/ram/dsatg2.ram

MMS : mms://wm05.nm.cbc.ca/cbcr2-toronto
: http://origin.www.cbc.ca/mrl2/livemedia/cbcr2-toronto.asx

Streamsniff is experimental. It runs on little-endian (Intel/AMD), Linux and Windows XP SP2. I want to be less specific about the platform. Help with ports (big-endian, FreeBSD) is appreciated.

Detects:

MMS
RTSP
ICY
HTTP (with Content-Type: audio.. , video.. , ..wms-hdr..)
<<less
Download (0.020MB)
Added: 2005-09-26 License: GPL (GNU General Public License) Price:
1493 downloads
iStream 0.10

iStream 0.10


iStream is an applet to play internet radio streams. more>>
iStream is an applet to play internet radio streams.

The project is a simple GNOME panel applet that lets you play internet radio streams (local files work too).

It uses Gstreamer for playback. Written in C using Gtk+.

<<less
Download (0.10MB)
Added: 2007-04-07 License: GPL (GNU General Public License) Price:
1072 downloads
Audio::Mad::Stream 0.6

Audio::Mad::Stream 0.6


Audio::Mad::Stream is a Perl interface to mad_stream structure. more>>
Audio::Mad::Stream is a Perl interface to mad_stream structure.

SYPNOSIS

my $stream = new Audio::Mad::Stream ($options);
$stream->buffer($scalar);

my $remain = substr($scalar, $stream->next_frame);
my $position = $stream->this_frame;

$stream->skip($position + 400);
$stream->sync();

$options = $stream->options();
$options |= MAD_OPTION_IGNORECRC;
$stream->options($options);

unless ($stream->err_ok()) {
print "error code was: " . $stream->error() . "n";
}

This package provides an interface to the underlying mad_stream structure used in the decoder library. Almost all of the methods from the library are implemented, and work on regualar perl data types.

<<less
Download (0.12MB)
Added: 2006-11-17 License: Perl Artistic License Price:
1071 downloads
homeTVstream 1.0.0

homeTVstream 1.0.0


homeTVstream is a collection of shell scripts and a PHP-based webpage for watching TV on your LAN computers. more>>
homeTVstream is a collection of shell scripts and a PHP-based webpage for watching TV on your LAN computers.

This project is based on VLC, it encodes and streams video using port 8080 in an MMS stream, so you can watch it with VLC, using URL mmsh://yourserverip:8080/, or any other MMS-capable player, using URL mms://yourserverip:8080/, or just by opening the TV page in your web browser.

<<less
Download (0.13MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
522 downloads
Save Lyric 1.0

Save Lyric 1.0


Save Lyric script request lyric download (from http://lyrc.com.ar) and if succesfull save it into played mp3s directory. more>>
Save Lyric script request lyric download (from http://lyrc.com.ar) and if succesfull save it into played mp3s directory.

<<less
Download (0.002MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1089 downloads
Stream-2-Stream 1.0

Stream-2-Stream 1.0


Stream-2-Stream allows anyone with a normal broadband connection to set up their own internet television or radio station, free. more>>
Stream-2-Stream project (abbreviated "s2s" or "S2S") allows anyone with a normal broadband connection to set up their own radio station or internet television, for free.
Stream-2-Stream stations have no user limit; stations can be set up without paying a fortune for bandwidth. Stream-2-Stream saves bandwidth by passing streams from one peer to another, rather than everyone getting a stream from one central server (Shoutcast/Icecast).
Supported codecs are MP3, NSV, and Ogg Vorbis.
Main features:
- Integrated MP3, Ogg media player. No external media player needed to listen!!!
- Easy to use GUI
- Bandwidth is tested automatically for the best p2p streaming performance
- Settings are saved to xml
- Easy to use server command-line
- A shoutcast/icecast internet radio/TV Station is used as the source
- Freeloaders/Leechers (peers that only listen but dont want to send out the stream to other listeners) will be detected
- The data stream can be signed; you can be sure that it arrives unchanged
- Very efficient communication (low overhead).
- The network structure can be viewed with a monitor
- Peers can be denied service
- Streams can be recorded to files for later viewing
Enhancements:
- s2s protocol version 3 provides streaming through TCP, UDP, and Multicast+.
- The number of listeners can be seen.
- GUI mechanics fixed
- Connecting improved
- LanPages changed to multicast
- Player and Web ports switched for easy port forwarding.
- Public player connections can now be toggled in the options menu.
- Xml file can be specified with the arg -x file.xml
<<less
Download (0.98MB)
Added: 2006-05-08 License: GPL (GNU General Public License) Price:
1274 downloads
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
Save Complete 0.9b7

Save Complete 0.9b7


Save Complete is a Firefox extension that saves a webpage completely. more>>
Save Complete is a Firefox extension that saves a webpage completely, providing a better alternative to the flawed built-in save functionality of Firefox.

As more and more sites use CSS, Firefoxs built-in complete save becomes increasingly less effective, as it doesnt support stylesheets.

This extension fixes this, and saves the complete page, including all images and all stylesheets associated with the document, even imported stylesheets and images referenced in the stylesheet files.

<<less
Download (0.017MB)
Added: 2007-06-21 License: MPL (Mozilla Public License) Price:
946 downloads
Mediastreamer 2.1.0

Mediastreamer 2.1.0


Mediastreamer is library written in C that allows you to create and run audio and video streams. more>>
Mediastreamer is library written in C that allows you to create and run audio and video streams. It is designed for any kind of voice over IP applications.

It features RTP connectivity, audio codecs (Speex, iLBC, G711, GSM), video codecs (MPEG4, H263, Theora), I/O from soundcards, wav files, webcams, echo-cancelation, conferencing, and various other utilities.

Mediastreamer has a modular design that makes it extensible through plugins. This is the media-streaming component of linphone, a GPL SIP video phone.

<<less
Download (0.45MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
1015 downloads
MMS Ripper 0.7.0

MMS Ripper 0.7.0


MMSRIP is a pure useless program which allows you to save on your hard-disk the content being streamed by an MMS server. more>>
MMSRIP is a pure useless program which allows you to save on your hard-disk the content being streamed by an MMS server.
This program has been written for personnal use, so dont blame me if you think I am stupid doing such tool for the others.
MMS Ripper project should run on every POSIX compliant Operating System, but I cant give you any complete list.
MMSRIP is a client for the proprietary protocol MMS://.
It actually saves to a file the content being streamed. Please remember that this is not intended for real use, its existence is only and must only be documentary.
Enhancements:
- This release introduces many improvements and bugfixes such as a workaround for recalcitrant MMS servers, a switch which enables debug output and the display of the ripping speed.
- You may also compile MMSRIP on Solaris, Cygwin, and Win32 now.
<<less
Download (0.093MB)
Added: 2006-01-28 License: GPL (GNU General Public License) Price:
1376 downloads
Save The Penguins 0.02

Save The Penguins 0.02


Save The Penguins is a crazy space shooter with penguins and flying saucers. more>>
Save The Penguins is a crazy space shooter with penguins and flying saucers.
This is inspired by "Save The Gweeks" for the Archimedes, in which you saved the gweeks from the snerds. I havent had access to the original, so how close it is I couldnt say.
You control this sphere/circle/whatever with the mouse. Left click to acellerate towards the cursor. Right click to fire lasers. Middle click to pause. Esc to Quit.
The idea is to kill the space ships before they either kill you or all the penguins.
The art for the penguins came from Pingus, the tileset was ripped from supertux.
If anyone would like to contribute levels/art/sound that would be cool.
Main features:
- Scrolling, moving and shooting.
- Tileset defined in simple configuration file
- Loading/Saving level to file with in-game level editor (press E).
- Objects (that is, non-static ones) get damaged when you hit them. The penguins explode in a pile of blood.
- Reasonable collision detection - you have to at least try to get it stuck.
- NEW!! Nice particle-based explosions. Saves me both needing a graphic for it, and it looks pretty cool
- NEW!! Powerups. Dont do much atm. One heals you, the other two hurt you by different amounts. Theres a hook to attach a sound to powerup/powerdown for when I get round to it.
<<less
Download (0.46MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
827 downloads
Stream Transcoder 1.2.8

Stream Transcoder 1.2.8


The streamTranscoder is a multi-platform utility which can be used to transcode media streams from one format to another. more>>
The streamTranscoder is a multi-platform utility which can be used to transcode media streams from one format to another, and from one server type to another. It can read in streams of type MP3 and Vorbis from most servers (Icecast, Icecast2, Shoutcast), convert it into various formats, and send to various streaming servers.
Main features:
- Shoutcast - MP3 (with metadata and without)
- Icecast 1.x - MP3 (with icy metadata and without)
- Icecast 2 - MP3 (with metadata)
- Icecast 2 - Vorbis (with metadata)
- Peercast - MP3 and Vorbis
- KasterBlaster - MP3 (no metadata)
Enhancements:
- src/: streamTranscoder.iss, liboddcast/liboddcast.cpp, libtranscoder/transcurl.cpp: Fixed problem with transcoding fromStereo to Mono on win32 platforms (in some cases) Added
- CURLOPT_NOSIGNAL to prevent problems with getting SIGPIPEs..
<<less
Download (0.34MB)
Added: 2006-07-17 License: GPL (GNU General Public License) Price:
1200 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5