Compare commits
No commits in common. "20f8e5665bbaa12be5d6be323183a924bdd39386" and "e71467b2435d2d7e14577e1bfbf2329251a571fd" have entirely different histories.
20f8e5665b
...
e71467b243
@ -2,5 +2,4 @@
|
||||
|
||||
A repository to allow users to quickly create, share, and manage small code snippets or notes directly within the Gitea platform.
|
||||
|
||||
- [Docker](docker.md)
|
||||
- [yt-dlp](yt-dlp.md)
|
||||
- [Docker](docker.md)
|
||||
@ -1,14 +1,12 @@
|
||||
# Docker Snippets
|
||||
|
||||
## Stop All Containers
|
||||
Stops all running containers.
|
||||
|
||||
```shell
|
||||
docker stop $(docker ps -q)
|
||||
```
|
||||
|
||||
## Start Stopped Continaers
|
||||
Starts all containers that were stopped.
|
||||
|
||||
```shell
|
||||
docker start $(docker ps -q -f "status=exited")
|
||||
|
||||
27
yt-dlp.md
27
yt-dlp.md
@ -1,27 +0,0 @@
|
||||
# yt-dlp Snippets
|
||||
|
||||
## Best Video in MP4
|
||||
Download the best quality video in .mp4 format.
|
||||
|
||||
```shell
|
||||
yt-dlp -f "best[ext=mp4]" <url>
|
||||
```
|
||||
|
||||
## Best Video in MP4 w/ English Subtitles
|
||||
Download the best quality video in .mp4 format, along with English subtitles (if available), from the given URL.
|
||||
|
||||
```shell
|
||||
yt-dlp -f "best[ext=mp4]" --write-sub --sub-lang en <url>
|
||||
```
|
||||
|
||||
## Extract Audio in MP3
|
||||
The command will extract the audio from the video at the given URL and save it in the MP3 format.
|
||||
```shell
|
||||
yt-dlp -x --audio-format mp3 <url>
|
||||
```
|
||||
|
||||
## Extract Audio in MP3, Block Ads
|
||||
The command will extract the audio from the video at the given URL, remove all sponsor segments using SponsorBlock, and save the audio in MP3 format.
|
||||
```shell
|
||||
yt-dlp --sponsorblock-remove all -x --audio-format mp3 <url>
|
||||
```
|
||||
Loading…
Reference in New Issue
Block a user