diff --git a/content/software/_index.md b/content/software/_index.md new file mode 100644 index 0000000..b5465ec --- /dev/null +++ b/content/software/_index.md @@ -0,0 +1,6 @@ ++++ +title = 'Software' +date = 2026-01-29T15:51:10-06:00 ++++ + +- [WebApps](webapps) \ No newline at end of file diff --git a/content/software/shell.md b/content/software/shell.md new file mode 100644 index 0000000..f5d0312 --- /dev/null +++ b/content/software/shell.md @@ -0,0 +1,5 @@ ++++ +title = 'Shell' +date = 2026-01-29T15:51:57-06:00 +draft = true ++++ diff --git a/content/software/webapps/_index.md b/content/software/webapps/_index.md new file mode 100644 index 0000000..01332a1 --- /dev/null +++ b/content/software/webapps/_index.md @@ -0,0 +1,6 @@ ++++ +title = 'Webapps' +date = 2026-01-29T15:51:51-06:00 ++++ + +- [TYTD2025](tytd2025) \ No newline at end of file diff --git a/content/software/webapps/tytd2025/_index.md b/content/software/webapps/tytd2025/_index.md new file mode 100644 index 0000000..6677d0d --- /dev/null +++ b/content/software/webapps/tytd2025/_index.md @@ -0,0 +1,63 @@ ++++ +title = 'TYTD2025' +date = 2026-01-29T15:53:21-06:00 ++++ + +## My web based YouTube downloader that I created in 2025 + + +![The Image](/images/tytdscreenshot.jpg) + +[Source Code](https://onedev.site.tesses.net/tytd2025) + +# Features +- Uses [SQLite3](https://www.sqlite.org/) for it's database (embedded into TessesFramework) +- Can download videos, playlists and channels (you need a channel url like this [https://www.youtube.com/channel/UCBa659QWEk1AI4Tg--mrJ2A](https://www.youtube.com/channel/UCBa659QWEk1AI4Tg--mrJ2A)) +- Can subscribe to channels +- Can create playlists (that are stored on the server) +- Search and browse your downloaded videos, playlists, or channels (the search is very basic though) +- User accounts +- Videos can be tagged based on your downloader's TYTD tag (to determine which instance downloaded it) +- Plugins from [CPKG](https://cpkg.tesseslangauge.com/) or any CPKG compliant server +- Can download YouTube videos either Low quality (but doesn't) require [ffmpeg](https://ffmpeg.org/), you can also download individual streams (also doesn't need [ffmpeg](https://ffmpeg.org/)), or to MP4 (doesn't work on wii due to libx264 having illegal instruction), MKV (so no transcode), MP3 or FLAC (these do need [ffmpeg](https://ffmpeg.org/) in your PATH however) +- Runs on the Wii using the [Wii Linux Continuation Project](https://wiibrew.org/wiki/Wii-Linux#Wii_Linux_Continuation_Project) (albeit extremely slowly, despite this that's where I run it) + + +## To Install +Install [crosslang](https://crosslang.tesseslanguage.com/downloads/index.html) + +from source: +```bash +git clone https://onedev.site.tesses.net/tytd2025 +cd tytd2025/Tesses.YouTubeDownloader.Server +crosslang install-webapp +``` + +from package manager: +```bash +crosslang install-webapp Tesses.YouTubeDownloader.Server +``` + + +## To Run + +Save to videos: +```bash +crosslang webapp tytd2025 --port=3255 +``` + +Save to a folder (unix): +```bash +# Replace /path/to/tytd with the folder you want +export TYTDDIR=/path/to/tytd +crosslang webapp tytd2025 --port=3255 +``` + +Save to a folder (windows): +```batch +REM Replace C:\path\to\tytd with the folder you want +SET TYTDDIR=C:\path\to\tytd +crosslang webapp tytd2025 --port=3255 +``` + +License is GPLv3-or-later \ No newline at end of file diff --git a/static/images/tytdscreenshot.jpg b/static/images/tytdscreenshot.jpg new file mode 100644 index 0000000..ffe9c8d Binary files /dev/null and b/static/images/tytdscreenshot.jpg differ