All Projects → TorrentStream → Torrentstream Android

TorrentStream / Torrentstream Android

Licence: other
A torrent streamer library for Android based on jlibtorrent

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Torrentstream Android

Node Torrent
Torrent reader, writer, and hash checker for node.
Stars: ✭ 175 (-26.16%)
Mutual labels:  torrent
Gmdb
GMDB is the ultra-simple, cross-platform Movie Library with Features (Search, Take Note, Watch Later, Like, Import, Learn, Instantly Torrent Magnet Watch)
Stars: ✭ 189 (-20.25%)
Mutual labels:  torrent
Docker Transmission Openvpn
Docker container running Transmission torrent client with WebUI over an OpenVPN tunnel
Stars: ✭ 2,748 (+1059.49%)
Mutual labels:  torrent
Sickchill
Less rage, more chill.
Stars: ✭ 2,166 (+813.92%)
Mutual labels:  torrent
Dht
dht is used by anacrolix/torrent, and is intended for use as a library in other projects both torrent related and otherwise
Stars: ✭ 184 (-22.36%)
Mutual labels:  torrent
Notorious
Go: A feature-complete, performant torrent tracker
Stars: ✭ 194 (-18.14%)
Mutual labels:  torrent
Tremc
Curses interface for transmission
Stars: ✭ 174 (-26.58%)
Mutual labels:  torrent
Magnetissimo
Web application that indexes all popular torrent sites, and saves it to the local database.
Stars: ✭ 2,551 (+976.37%)
Mutual labels:  torrent
Doubi
一个逗比写的各种逗比脚本~
Stars: ✭ 4,268 (+1700.84%)
Mutual labels:  torrent
Ipmagnet
Check which IP adresses your BitTorrent client is handing out to trackers
Stars: ✭ 200 (-15.61%)
Mutual labels:  torrent
Biglybt Android
BiglyBT for Android, torrent client and remote control app
Stars: ✭ 180 (-24.05%)
Mutual labels:  torrent
Magnet Uri
Parse a magnet URI and return an object of keys/values
Stars: ✭ 183 (-22.78%)
Mutual labels:  torrent
Transgui
🧲 A feature rich cross platform Transmission BitTorrent client. Faster and has more functionality than the built-in web GUI.
Stars: ✭ 2,488 (+949.79%)
Mutual labels:  torrent
Torrent Discovery
Discover BitTorrent and WebTorrent peers
Stars: ✭ 177 (-25.32%)
Mutual labels:  torrent
Joal
An open source command line RatioMaster with an optional WebUI.
Stars: ✭ 213 (-10.13%)
Mutual labels:  torrent
Dottorrent Gui
An advanced GUI torrent file creator with batch functionality, powered by PyQt and dottorrent
Stars: ✭ 175 (-26.16%)
Mutual labels:  torrent
Thepiratebay
💀 The Pirate Bay node.js client
Stars: ✭ 191 (-19.41%)
Mutual labels:  torrent
Cratetorrent
A BitTorrent V1 engine library for Rust (and currently Linux)
Stars: ✭ 233 (-1.69%)
Mutual labels:  torrent
Major Scrapy Spiders
Scrapy spiders of major websites. Google Play Store, Facebook, Instagram, Ebay, YTS Movies, Amazon
Stars: ✭ 223 (-5.91%)
Mutual labels:  torrent
Vlc Bittorrent
A bittorrent plugin for VLC.
Stars: ✭ 198 (-16.46%)
Mutual labels:  torrent

TorrentStream-Android Release

A torrent streamer library for Android based on jlibtorrent.

Once built for the Popcorn Time and the Butterproject. Now just a cool library for anyone to use.

How to use

Add Jitpack in your root build.gradle at the end of repositories:

allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}

Add to your dependencies:

dependencies {
    compile "com.github.TorrentStream:TorrentStream-Android:${torrentstreamVersion}"
}

Add to your AndroidManifest.xml (only for saving to the external storage):

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

Code samples

Create your own TorrentOptions instance using the builder and feed it to a new TorrentStream.

TorrentOptions torrentOptions = new TorrentOptions.Builder()
                .saveLocation(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS))
                .removeFilesAfterStop(true)
                .build();

TorrentStream torrentStream = TorrentStream.init(torrentOptions);
torrentStream.startStream("https://butterpoject.org/test.torrent");

If you want to get status information about the torrent then you might want to use addListener to attach a listener to your TorrentStream instance.

License

Copyright 2015-2018 Sébastiaan (github.com/se-bastiaan)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].