Readthedocs for ytdl-sub is getting a massive overhaul to both look and read like a modernized app. It is still very-much work-in-progress, stay tuned for more! Huge thanks to @Svagtlys (aka Momo) for driving this
50 lines
No EOL
1.7 KiB
ReStructuredText
50 lines
No EOL
1.7 KiB
ReStructuredText
=====
|
|
Linux
|
|
=====
|
|
|
|
``ytdl-sub`` should be installable using any Linux package manager, and requires ffmpeg to be installed.
|
|
|
|
|
|
.. tab-set::
|
|
|
|
.. tab-item:: Linux
|
|
|
|
.. code-block:: bash
|
|
|
|
curl -L -o ytdl-sub https://github.com/jmbannon/ytdl-sub/releases/latest/download/ytdl-sub
|
|
chmod +x ytdl-sub
|
|
ytdl-sub -h
|
|
|
|
You can also install using yt-dlp's ffmpeg builds. This ensures your ffmpeg is up to date:
|
|
|
|
.. code-block:: bash
|
|
|
|
curl -L -o ffmpeg.tar.gz https://github.com/yt-dlp/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-linux64-gpl.tar.xz
|
|
tar -xf ffmpeg.tar.gz
|
|
chmod +x ffmpeg-master-latest-linux64-gpl/bin/ffmpeg
|
|
chmod +x ffmpeg-master-latest-linux64-gpl/bin/ffprobe
|
|
|
|
# May need sudo / root permissions to perform
|
|
mv ffmpeg-master-latest-linux64-gpl/bin/ffmpeg /usr/bin/ffmpeg
|
|
mv ffmpeg-master-latest-linux64-gpl/bin/ffprobe /usr/bin/ffprobe
|
|
|
|
.. tab-item:: Linux ARM
|
|
|
|
.. code-block:: bash
|
|
|
|
curl -L -o ytdl-sub https://github.com/jmbannon/ytdl-sub/releases/latest/download/ytdl-sub_aarch64
|
|
chmod +x ytdl-sub
|
|
ytdl-sub -h
|
|
|
|
You can also install using yt-dlp's ffmpeg builds. This ensures your ffmpeg is up to date:
|
|
|
|
.. code-block:: bash
|
|
|
|
curl -L -o ffmpeg.tar.gz https://github.com/yt-dlp/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-linuxarm64-gpl.tar.xz
|
|
tar -xf ffmpeg.tar.gz
|
|
chmod +x ffmpeg-master-latest-linuxarm64-gpl/bin/ffmpeg
|
|
chmod +x ffmpeg-master-latest-linuxarm64-gpl/bin/ffprobe
|
|
|
|
# May need sudo / root permissions to perform
|
|
mv ffmpeg-master-latest-linuxarm64-gpl/bin/ffmpeg /usr/bin/ffmpeg
|
|
mv ffmpeg-master-latest-linuxarm64-gpl/bin/ffprobe /usr/bin/ffprobe |