Web Based Torrent Downloader



BitTorrent today launched a new BitTorrent client: uTorrent Web. Not to be confused with uTorrent (stylized as µTorrent), and despite what its name might suggest, you still have to download and install uTorrent Web.

  1. Web Based Bittorrent Client

BitTorrent commonly refers to the infamous peer-to-peer (P2P) file-sharing protocol associated with piracy. But there is also a company by the name of BitTorrent, which owns the two most popular clients for the protocol: BitTorrent and uTorrent.

Audiobooks.Cloud has a large selection of audiobooks, ready to download via direct download services or by subscription to their google drive account. Books on a wide variety. Simply find a torrent you wish to download anonymously via a third party, Copy the.torrent or magnet address URL (right click the download execute button not the website url) then Paste on TorrentSafe URL box and click 'Download Now'. To view your in-progress and completed downloads, click the 'My Downloads' at the top. Bitport.io – Editors Choice. When it comes to downloading torrents, you are basically exposing. Sep 06, 2020 Considering how web applications are becoming more and more popular, I was not really surprised when I saw Web Torrent, a web based torrent application for people who are not looking to download an additional software just so they can download torrents. The good thing about Web Torrent is that it is completely web-based, and does not take any.

uTorrent Web has been available in beta for years, but today the web-based torrent client is finally available as a stable version. The main difference between uTorrent Web and its counterparts is that all the downloading happens in your browser. Just like uTorrent, uTorrent Web can play audio and video files before they’ve finished downloading, but unlike uTorrent, the playback also happens inside the browser. Other file types can be downloaded as well — it’s really just like a normal BitTorrent client.

After installation, uTorrent Web will try to open torrent and magnet links automatically in a browser window. You can search for content on your regular torrent sites or use uTorrent Web’s search box, which redirects you to Google. Downloading is just as fast as you would expect, and playback is seamless — even subtitles are pulled in automatically, assuming they’re included in the torrent file.

The app’s settings are far from rudimentary. You can pick your language, your default download folder, and even whether to open each torrent in a new tab. It’s also possible to set uTorrent Web to start up when your computer boots or clear your search history, and of course you can choose uTorrent Web as your default torrent client.

The idea is that making all this possible inside the browser will make downloading torrent files easier for average internet users. At least, that’s how BitTorrent explains it:

Web based torrent downloader full

When we first started the project, our vision was to build a torrent client with simplicity and quick playability. With a simple download to play experience as the focal point of µTorrent Web, we see more users successfully downloading and playing torrents than with any other product in BitTorrent’s history.

Despite today’s release, BitTorrent promises that the desktop version of uTorrent, which will now be referred to as uTorrent Classic, will live on: “Our long-term plan is to continue development across both products and make them available on utorrent.com.”

uTorrent Web is only available for Windows, but it will likely be ported to other operating systems if this launch is successful. In our testing, however, the experience wasn’t ideal — uTorrent Classic is still significantly simpler to install and use. But the fact that BitTorrent has managed to bring all the basic functionality into the browser is certainly a success.

You can't solo security COVID-19 game security report: Learn the latest attack trends in gaming. Access here

Introduction: How to Associate .torrent Files in Windows With a Web-based Torrent System

As you all know, .torrent files are files used with the BitTorrent P2P Protocol, and hold the metadata needed to start the file transfer. However, there is no built-in torrent software with windows, so users must either get a torrent program (such as BitTorrent) or use a web-based service (such as BitLet.org, the website used in this instructable). However, the downloaded torrent programs can be, well, 'contraband' in some places, and web-based services often require some human input. If only the web-based torrent services had the automation of the downloaded programs... Well, look no further! This instructable will show you how to associate .torrent files with a web-based torrent service. For this instructable, we will be using Bitlet.org, a simple java-based torrent applet.

Step 1: The Disclaimer

This software is provided 'AS IS' without any warranty of any kind. In no event will the author (I) be liable for any damages caused by the use (or inability to use) this product.
Torrents can be used legally (and illegally). I am in NO WAY responsible for what legal trouble you get into if you use this to download an illegal file. I am also not responsible for any technical issues that arise from downloading a torrent infected with a virus. This is a simple batch file, and cannot contain any viruses.
I am in no way affiliated with BitLet.org or Faith Kodak.
PS: For those who are lazy, skip to step 7.

Step 2: Requirements

Bitlet

1. Windows 2000/XP/Vista/7
2. Ability to use the command prompt
3. A web browser (You're looking at this, so obviously you have one) with Java
4. A web-based torrent client, like Bitlet.

Step 3: Check the Syntax of Your Torrent Client.

You must know how the URL of the torrent client is formatted, in order for Windows to send it the filename correctly. For Bitlet, the syntax is very simple:
www.bitlet.org/download?torrent=(YOUR FILE NAME)
for web-based files, and:
www.bitlet.org/download?torrent=file:/(LOCAL FILE NAME)
for local torrents. Windows will download the torrent to the %TEMP% directory, so we'll be using the local filename syntax. If you don't use BitLet, you're on your own.

Step 4: Start the Batch File.

We'll need a batch file in order for windows to open up the right page. The code is very simple. Create a blank text file in the folder of your choice, and rename it to 'Bitlet Client Test.bat'. Windows may tell you that changing a file's extension can destabilize the file, just click yes. If it doesn't prompt you, then go to Control Panel>Folder options>View>uncheck 'Hide extensions for known file types' and click OK. Go back to the Bitlet Client Test file and make sure the .txt extension is removed. Once the text file has been changed to a batch file, Right-click on it and select 'edit'. Notepad (or some other text program) will pop up with a blank screen. Paste in the following 3 lines of code:
@echo OFF
START ' 'http://www.bitlet.org/download?torrent=file:/%~dpnx1'
exit
Line 1 turns off echoing in the command prompt (change OFF to ON to debug)
Line 2 tells your favorite web browser to start up and go to the torrent downloader applet. %~dpnx1 is automatically replaced with the Drive, Path, Name, and Extension of the file to be opened by windows. Without the first set of empty quotes, a command prompt window will open with the URL as the title.
Line 3 tells the window to close.
Save and exit.
For those who aren't using bitlet, you'll need to change the link to the torrent downloader in line 2 & use '%~dpnx1' for the name of the file to be downloaded.

Step 5: Test.

Run the batch file. Your web browser should pop up and go to the torrent applet. Bitlet will throw back an error saying 'could not download metafile'. Ignore it. We just need to know that it works. If you want, try it with a test torrent file. Dragging and dropping onto the batch file should work.

Step 6: Convert to an .exe File

*If you want this to be a plain-jane batch file, then skip this step*
Start up your .bat to .exe converter (one is provided) and select the options as shown in the picture:
Click 'Complile', then click 'Exit' once the popup disappears.
If you want, you can add an icon in the third tab.
Skip to Step 8.

Step 7: Files (For the Lazy Ones...)

If you didn't have the time (or the work ethic) to follow the instructable, then use these files. You'll still need to do steps 8 & 9.

Step 8: Associate in Windows.

Move the file (be it batch or executable) to a safe place. Get a torrent file to use, and right-click>open with...>Choose Default (might be a different name in 2000/XP/7). Browse to the .bat or .exe, and select it. Make sure that it sets it as the default program, then click OK.

Step 9: Moment of Truth!

After clicking OK, the bitlet page should fire up and and prompt for a directory. If not, or if any errors are thrown back, leave a comment and I'll attempt to help you. Also, any comments or suggestions are welcome.

Be the First to Share

Recommendations

Retro Analog Audio VU Meter From Scratch! in Audio
OPA Based Alice Microphones: a Cardioid and a Figure 8 in Audio
17 1.2K
DIY Raspberry Pi Desktop Case With Stats Display in Raspberry Pi

Web Based Bittorrent Client

  • The 1000th Contest

  • Battery Powered Contest

  • Hand Tools Only Challenge