Main > Free Download Search >

Free stream torrents software for linux

stream torrents

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1039
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
rTorrent 0.7.6

rTorrent 0.7.6


rTorrent is a console-based BitTorrent client. more>>
rTorrent is a console-based BitTorrent client. It aims to be a fully-featured and efficient client with the ability to run in the background using screen.
rTorrent project supports fast-resume and session management.
Main features:
- Use an URL or file path to add torrents at runtime
- Emacsish find-file support for opening torrents
- Stop/delete/resume torrents
- Optionally loads/saves/deletes torrents automatically in a session directory
- Safe fast resume support
- Shows lots of information about peers and the torrent
- Only one torrent at a time is checked.
Enhancements:
- Support for XMLRPC.
<<less
Download (0.40MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
505 downloads
Stream ripper 1.61.24

Stream ripper 1.61.24


Streamripper started as a way to separate tracks via Shoutcasts title-streaming feature. more>>
Streamripper started as a way to separate tracks via Shoutcasts title-streaming feature. This has now been expanded into a much more generic feature, where part of the program only tries to "hint" at where one track starts and another ends, thus allowing a mp3 decoding engine to scan for a silent mark, which is used to find an exact track separation.
Streamripper was started sometime back in early 2000. Streamripper started as a way to separate tracks via Shoutcasts title-streaming feature. This has now been expanded into a much more generic feature, where part of the program only tries to "hint" at where one track starts and another ends, thus allowing a mp3 decoding engine to scan for a silent mark, which is used to find an exact track separation.
This is not surprising because portability was a constant consideration during development.Streamripper is now part of the FreeBSD standard distribution, mentioned in the Linux MP3 HOWTO, known to compile on many platforms such as Linux, Windows, FreeBSD, BeOS, OS/2.
With the emergence of file sharing protocols such as Napster, Gnutella, and now Mojonation and Freenet, the average Internet user can download nearly any mp3 he wants in a matter of no time, but many times people dont know what they want. Streamripper allows you to download an entire station of music. Many of these mp3 radio stations only play certain genres, so you can now download an entire collection of goa/trance music, an entire collection of jazz, punk rock, whatever you want.
Enhancements:
- Fix bug where external program wasnt being killed when reconnecting.
<<less
Download (1.2MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1199 downloads
FoxTorrent 1.10

FoxTorrent 1.10


FoxTorrent is a Firefox extension that lets you stream torrents as they download, from your web browser, with zero configuration more>>
FoxTorrent is a Firefox extension that lets you stream torrents as they download, from your web browser, with zero configuration needed.
Main features:
Streaming Fast Delivery
- Watch video and listen to audio as it downloads.
Complete Firefox Integration
- Manage your torrent downloads from your browser window.
Windows, Mac, and Ubuntu Linux
- Consistent downloading experience across all three platforms.
Background Downloading
- Continues to work even after your browser window has been closed.
Low Resource Footprint
- Foxtorrent uses less than 8 MB of RAM, and doesnt hog bandwidth.
Configuration-Free
- Automatic support for NATs, uPNP, and firewalls, with no tinkering necessary.
<<less
Download (0.21MB)
Added: 2007-05-17 License: GPL (GNU General Public License) Price:
1542 downloads
Torrent Bubbles 0.1

Torrent Bubbles 0.1


Torrent Bubbles is an easy-to-use BitTorrent utility program which can search for torrents on the Web. more>>
Torrent Bubbles is an easy-to-use BitTorrent utility program which can search for torrents on the Web.

The main goal of Torrent Bubbles is simplicity, with only a search bar, two buttons, and the ability to double click a search result (to launch a download).
<<less
Download (0.58MB)
Added: 2005-06-29 License: GPL (GNU General Public License) Price:
1586 downloads
Stream::Reader 0.09

Stream::Reader 0.09


Stream::Reader is a stream reader Perl class. more>>
Stream::Reader is a stream reader Perl class.

SYNOPSIS

# Input stream can be reference to TYPEGLOB or SCALAR, output stream
# can be the same types or undefined

# Constructor
$stream = Stream::Reader->new( *IN,
{ Limit => $limit, BuffSize => $buffsize, Mode => UB } );

# Reading all before delimiter beginning from current position.
# Delimiter is SCALAR or reference to array with many SCALARs.
# Returns true value on succesfull matching or if end of stream
# expected at first time
$bool = $stream->readto( $delimiter,
{ Out => *OUT, Limit => $limit, Mode => AIE } );

# Reading fixed number of chars beginning from current position.
# Returns true value if was readed number of chars more then zero or
# end of stream was not expected yet
$bool = $stream->readsome( $limit, { Out => *OUT, Mode => A } );

# Mode is string, what can contains:
# U - modificator for constructor. disable utf-8 checking
# B - modificator for constructor. enable second buffer for speed up
# case insensitive search
# A - modificator for readto() and readsome(). appending data to
# output stream, if stream is SCALAR
# I - modificator for readto(). enable case insensitive search
# E - modificator for readto(). at end of input stream alltimes
# returns false value

$number = $stream->{Total}; # total number of readed chars
$number = $stream->{Readed}; # number of readed chars at last
# operation (without matched string
# length at readto() method)
$number = $stream->{Stored}; # number of succesfully stored chars
# at last operation
$string = $stream->{Match}; # matched string at last operation
# (actually for readto() only)
$bool = $stream->{Error}; # error status. true on error

METHODS

OBJ = Stream::Reader->new( INPUT, { ... Params ... } )

The constructor method instantiates a new Stream::Reader object.

INPUT - is a reference to file stream, opened for reading, or reference to defined string. This is an obligatory parameter.

Params (all optionaly):

Limit - limit size of input stream data in characters. If this parameter is absent, not defined or less then zero, then all data from input stream will be available for reading.

BuffSize - size of buffer in characters. If this parameter is absent, not defined or less then zero, then will be used default buffer size 32768 characters.

Mode - is string with letters-modificators:

B - use second buffer. Can really speed up search in case insensitive mode.
U - disable UTF-8 data check in UTF-8 mode. Use this flag if you are absolutely sure, that your UTF-8 data is valid.

RESULT = OBJ->readto( DELIMITER, { ... Params ... } )

This method reads all data from input stream before first found delimiter, beginning from current position.

RESULT - boolean value. True value if successfuly found delimeter or and of input stream has expected at first time. False value otherwise, or in case of reading error.

DELIMETER - is a string-delimeter or reference to array with many delimeters. This is an obligatory parameter and must be defined.

Remember! In case of many delimiters, left delimiter alltimes have more priority then right!

Params (all optionaly):

Out - is a reference to file stream, opened for writing, or reference to string. If this parameter is absent then data will not stored.
Limit - size in characters. Defines, the maximum number of characters that must be stored in Out. If this paramter is absent, not defined or less then zero, then this method will be trying to store all readed data.
Mode - is string with letters-modificators:
A - appendig data to Out if Out is a reference to string.
I - search in case insensitive mode.
E - at the end of input stream returns only false value. Without this modificator, if end of stream expected at first time, then will be returned true value.

RESULT = OBJ->readsome( LIMIT, { ... Params ... } )
This method reads fixed number of characters from input stream beginning from current position.

RESULT - boolean value. True value, if any characters were read or end of input stream is not expected yet. False value otherwise, or in case of reading error.

LIMIT - limit size in characters, how many it is necessary to read. If this parameter is absent, not defined or less then zero, then will be read all available data from input stream.

Params (all optionaly):

Out - the same as in readto() method.
Mode - is string with letters-modificators:
A - the same as in readto() method.

Statistics:

OBJ->{Total} - total number of readed characters. Warning! This module using block reading and real position in stream is different.
OBJ->{Readed} - number of readed characters at last operation (without matched string length at readto() method).
OBJ->{Stored} - number of succesfully stored chars at last operation
OBJ->{Match} - matched string at last operation (actually for readto() only)
OBJ->{Error} - boolen error status. At any reading erorrs all operations will be stopes and this flag turned to true value.

<<less
Download (0.006MB)
Added: 2007-04-27 License: Perl Artistic License Price:
910 downloads
Torrent Swapper 0.1

Torrent Swapper 0.1


Torrent Swapper is an open sourced sociable peer to peer file-sharing client based on the Bittorrent protocol. more>>
Torrent Swapper is an open sourced sociable peer to peer file-sharing client based on the Bittorrent protocol that is ideal for high-speed distribution of large files that has a basic understanding of human friendships, of user tastes in content, and of Internet connectivity between users.
Torrent Swapper project supports simultaneous downloads, download queue, selected downloads in torrent package, fast-resume, speed limits, port mapping, disk cache, proxy, ip-filter, etc.
Main features:
- Amazon-like recommendations to get interesting files
- Doubling the download speed by using the upload capacity of friends
- Real-time P2P file sharing with P2P video streaming
- Showing the locations of seeders / leechers of the same content with city-level accuracy on a world map
- Multiple downloads in a single window
- Queueing system with priority
- Supporing pause, stop, resume, queue, remove operations
- Supporting global setting such as upload and download limiting
- Supporting local setting for each torrent as well
- And much more...
<<less
Download (0.62MB)
Added: 2006-08-11 License: MIT/X Consortium License Price:
254770 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
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
Earn-More-Money 1.0

Earn-More-Money 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-09 License: Freeware Price: Free
198 downloads
Torrent-Search Bar 1.0.1.21

Torrent-Search Bar 1.0.1.21


Torrent-Search Bar will improve your browsers capability greatly. It is designed as a Firefox addon that provides you the best way to search in more than 26 top torrent search engines. more>>
Torrent-Search Bar 1.0.1.21 will improve your browser's capability greatly. It is designed as a Firefox addon that provides you the best way to search in more than 26 top torrent search engines.

Major Features:

  1. Search Torrents in more than 31 Top Torrent Search sites - The Torrent Search engines in the toolbar are auto-updated
  2. Get RSS feeds with new torrents links - Fresh Torrents has tons of seeds...
  3. Links to the best private torrents communities
  4. E-Mail Notifier - Check multiple POP3, Gmail, Hotmail, Yahoo accounts for new mail It displays an icon in the toolbar and notifies you whenever new mail is waiting. It also optionally to play a WAV file.
  5. Highlight the Torrent Search Results - Make your life easier
  6. Online Anti Virus scanner - Cookie-Cleaner, History-Cleaner, Cache-Cleaner
  7. Popup Blocker - Block annoying pop-ups
  8. Weather - Offers forecasts for cities worldwide
  9. Auto Update - Help to keep your Toolbar current
  10. Supports:
    • Google Torrent search
    • MiniNova
    • Meganova
    • MoNova
    • biteNova
    • torrent valley
    • thepiratebay
    • TorrentReactor
    • Isohunt
    • And more...

Requirements:

  • Mozilla Firefox 1.0-3.0
  • Windows 2000/XP/Vista
<<less
Added: 2006-09-09 License: GPL Price: FREE
1 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
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::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
Extra-Money-Making 1.0

Extra-Money-Making 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-09 License: Freeware Price: Free
197 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5