You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+61-16Lines changed: 61 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,16 +44,16 @@ Problems can be reported at `our GitHub page <https://github.com/axcore/tartube/
44
44
3 Downloads
45
45
===========
46
46
47
-
Stable release: **v2.5.100 (2 Feb 2025)**
47
+
Stable release: **v2.5.145 (10 Jul 2025)**
48
48
49
-
Development release: **v2.5.120 (23 Jun 2025)**
49
+
Development release: **v2.5.145 (10 Jul 2025)**
50
50
51
51
Official packages (also available from the `Github release page <https://github.com/axcore/tartube/releases>`__):
52
52
53
-
- `MS Windows (64-bit) installer <https://sourceforge.net/projects/tartube/files/v2.5.100/install-tartube-2.5.100-64bit.exe/download>`__, `MS Windows (64-bit) and FFmpeg installer <https://sourceforge.net/projects/tartube/files/v2.5.100/install-tartube-with-ffmpeg-2.5.100-64bit.exe/download>`__ and `portable edition <https://sourceforge.net/projects/tartube/files/v2.5.100/tartube-2.5.100-64bit-portable.zip/download>`__ from Sourceforge
53
+
- `MS Windows (64-bit) installer <https://sourceforge.net/projects/tartube/files/v2.5.145/install-tartube-2.5.145-64bit.exe/download>`__, `MS Windows (64-bit) and FFmpeg installer <https://sourceforge.net/projects/tartube/files/v2.5.145/install-tartube-with-ffmpeg-2.5.145-64bit.exe/download>`__ and `portable edition <https://sourceforge.net/projects/tartube/files/v2.5.145/tartube-2.5.145-64bit-mswin-portable.zip/download>`__ from Sourceforge
54
54
- Tartube is no longer supported on older versions of MS Windows - see `7.24 Doesn't work on 32-bit Windows / Windows 7 / Windows 8`_
55
-
- `DEB package (for Debian-based distros, e.g. Ubuntu, Linux Mint) <https://sourceforge.net/projects/tartube/files/v2.5.100/python3-tartube_2.5.100.deb/download>`__ from Sourceforge
56
-
- `RPM package (for RHEL-based distros, e.g. Fedora) <https://sourceforge.net/projects/tartube/files/v2.5.100/tartube-2.5.100.rpm/download>`__ from Sourceforge
55
+
- `DEB package (for Debian-based distros, e.g. Ubuntu, Linux Mint) <https://sourceforge.net/projects/tartube/files/v2.5.145/python3-tartube_2.5.145.deb/download>`__ from Sourceforge
56
+
- `RPM package (for RHEL-based distros, e.g. Fedora) <https://sourceforge.net/projects/tartube/files/v2.5.145/tartube-2.5.145.rpm/download>`__ from Sourceforge
57
57
58
58
Official 'Strict' packages:
59
59
@@ -70,7 +70,7 @@ Semi-official packages (Linux):
70
70
71
71
Source code:
72
72
73
-
- `Source code <https://sourceforge.net/projects/tartube/files/v2.5.100/tartube_v2.5.100.tar.gz/download>`__ from Sourceforge
73
+
- `Source code <https://sourceforge.net/projects/tartube/files/v2.5.145/tartube_v2.5.145.tar.gz/download>`__ from Sourceforge
74
74
- `Source code <https://github.com/axcore/tartube>`__ and `support <https://github.com/axcore/tartube/issues>`__ from GitHub
75
75
- In case this Github repository is taken down, there is an official backup `here <https://gitlab.com/axcore/tartube>`__
76
76
@@ -108,7 +108,7 @@ If you just want to download videos with a minimum of fuss, do this:
108
108
5.1 Installation - MS Windows
109
109
-----------------------------
110
110
111
-
MS Windows users should use the installer `available at the Tartube website <https://tartube.sourceforge.io/>`__. The installer contains everything you need to run **Tartube**.
111
+
MS Windows users should use the installer `available at the Tartube website <https://tartube.sourceforge.io/>`__. The installer contains everything you need to run **Tartube**.
112
112
113
113
There is also a portable edition; use this if you want to install **Tartube** onto removable media, such as a USB drive. Download the ZIP file, extract it, and run the file **tartube_portable_64bit.bat**.
114
114
@@ -135,31 +135,76 @@ If you want to perform a manual installation, you can follow this procedure, whi
- (Don't close the MINGW64 terminal until you have finished the manual installation)
149
+
- Install Microsoft Visual C++ (a free download from the Microsoft website)
150
+
- Navigate to the folder **C:\\Windows\\System32**
151
+
- Copy all the files whose name starts with **msvcr** (e.g. **msvcr1230_clr0400.dll**) into the folder **C:\\msys64\\mingw64\\bin**
149
152
150
-
**pip3 install playsound**
153
+
- In the MINGW64 terminal, type the following commands:
154
+
155
+
**/mingw64/bin/python3 -m venv ~/ytdl-venv**
156
+
157
+
**source ~/ytdl-venv/bin/activate**
158
+
159
+
- In a suitable text editor, open the file **C:\\msys64\\home\\YOURNAME\\.bashrc**
160
+
- At the top of the file, add the following lines, then save it
161
+
162
+
**export PIP_HOME="$HOME/.local/pip"**
163
+
164
+
**export PIP_BIN_DIR="$HOME/.local/bin"**
165
+
166
+
**export PATH="$PIP_BIN_DIR:$PATH"**
167
+
168
+
- Nagivate to **C:\\msys64\\mingw64\\lib\\python3.12\\site-packages**
169
+
- Copy the following folders to **C:\\msys64\\home\\YOURNAME\\ytdl-venv\\lib\\python3.12\\site-packages**
170
+
171
+
**certifi**
172
+
173
+
**charset_normalizer**
174
+
175
+
**gi**
176
+
177
+
**idna**
178
+
179
+
**requests**
180
+
181
+
**urllib3**
182
+
183
+
- If you want to install `Atomic Parsley <https://github.com/wez/atomicparsley>`__, copy the MS Windows executable into the **C:\\msys64\\usr\\bin** folder
184
+
185
+
- In the MINGW64 terminal, type the following commands:
186
+
187
+
**pip install feedparser**
188
+
189
+
**pip install playsound**
151
190
152
191
**pacman -S mingw-w64-x86_64-aria2**
153
192
154
-
- Download the **Tartube** source code from Sourceforge, using the links above
193
+
- Download the **Tartube** source code from **Sourceforge**, using the links above
155
194
- Extract it into the folder **C:\\msys64\\home\\YOURNAME**, creating a folder called **C:\\msys64\\home\\YOURNAME\\tartube**
156
-
- Now, to run **Tartube**, type these commands in the MINGW64 terminal (don't forget to use *forward* slashes):
195
+
- You're now ready to start **Tartube**
196
+
- The simplest way to start **Tartube** is to double-click the **tartube_64bit.bat** file
197
+
- Otherwise, you can start **Tartube** from the MINGW64 terminal. If you have closed the terminal at any time since you started the manual installation, you first need to open it, and type this again:
198
+
199
+
**source ~/ytdl-venv/bin/activate**
200
+
201
+
- Then type these commands in the MINGW64 terminal (don't forget to use *forward* slashes):
157
202
158
203
**cd /home/YOURNAME/tartube**
159
204
160
205
**python3 -X utf8 tartube/tartube**
161
206
162
-
- The **-X utf8** part enables **Tartube** to handle non-European alphabets (such as Japanese and Korean) correctly. If this is not a concern, then **Tartube** can be started like this:
207
+
- The **-X utf8** part enables **Tartube** to handle non-European alphabets (such as Japanese and Korean) correctly. If that is not a concern, then **Tartube** could be started like this:
163
208
164
209
**python3 tartube/tartube**
165
210
@@ -972,7 +1017,7 @@ If you want to set the download options manually - typing them, rather than clic
972
1017
.. image:: screenshots/example36.png
973
1018
:alt:Customising download options
974
1019
975
-
Download options added here **override everything else in the window**. (However, they don't override the format selector in the **Classic Mode** tab.)
1020
+
Download options added here **override everything else in the window**. (However, they don't override the format selector in the **Classic Mode** tab.)
976
1021
977
1022
You can find a complete list of download options for youtude-dl `here <https://github.com/ytdl-org/youtube-dl>`__, and a complete list for yt-dlp `here <https://github.com/yt-dlp/yt-dlp>`__.
0 commit comments