tor-dl 1.0.13 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +45 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -177,8 +177,53 @@ For Windows users, you can install Transmission client using winget:
|
|
|
177
177
|
winget install Transmission.Transmission
|
|
178
178
|
```
|
|
179
179
|
|
|
180
|
+
Or download directly from the official website:
|
|
181
|
+
|
|
182
|
+
- **Windows**: [https://transmissionbt.com/download](https://transmissionbt.com/download)
|
|
183
|
+
|
|
180
184
|
After installation, you can open magnet links directly in Transmission.
|
|
181
185
|
|
|
186
|
+
## Transfer to Mobile/Tablet/Apple TV
|
|
187
|
+
|
|
188
|
+
After your download completes in Transmission, you can transfer the file directly to VLC on your mobile device, tablet, or Apple TV using WiFi transfer.
|
|
189
|
+
|
|
190
|
+
- If devices in different subnets: To connect to devices on different networks, port forwarding or routing must be configured on the network device which placed between them
|
|
191
|
+
|
|
192
|
+
### Prerequisites
|
|
193
|
+
|
|
194
|
+
1. **Set a Static IP** on your mobile device/tablet/Apple TV to ensure the IP address doesn't change
|
|
195
|
+
2. Enable WiFi transfer on your device (VLC for iOS/Android has built-in WiFi transfer feature)
|
|
196
|
+
|
|
197
|
+
### Setting Static IP
|
|
198
|
+
|
|
199
|
+
- **Mobile/Tablet**: Settings → WiFi → Long press your network → Modify Network → Set static IP
|
|
200
|
+
- **Apple TV**: Settings → Network → Configure IP manually (or use DHCP with reserved IP on your router)
|
|
201
|
+
|
|
202
|
+
### Upload Script
|
|
203
|
+
|
|
204
|
+
Place `upload.bat` in the same folder where you added to your search script mentioned above PATH (or any folder in your PATH):
|
|
205
|
+
|
|
206
|
+
```batch
|
|
207
|
+
@echo off
|
|
208
|
+
if "%~1"=="" (
|
|
209
|
+
echo Usage: upload.bat "full\path\to\file.mp4"
|
|
210
|
+
exit /b 1
|
|
211
|
+
)
|
|
212
|
+
|
|
213
|
+
set "FILE=%~1"
|
|
214
|
+
set "REMOTE=http://192.168.1.222/upload.json"
|
|
215
|
+
|
|
216
|
+
curl --progress-bar -F "file=@%FILE%" %REMOTE% -o NUL
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
**Note:** Replace `192.168.1.222` with your device's actual IP address.
|
|
220
|
+
|
|
221
|
+
### Usage
|
|
222
|
+
|
|
223
|
+
```bash
|
|
224
|
+
upload "C:\Users\YourName\Downloads\movie.mp4"
|
|
225
|
+
```
|
|
226
|
+
|
|
182
227
|
## Author
|
|
183
228
|
|
|
184
229
|
Sedat ERGOZ [@eaeoz](https://github.com/eaeoz)
|