Your next YouTube media manager
Find a file
Kieran a135746c97 Improve episode-level compatability with media center apps (#86)
* Add media profile presets (#85)

* Added presets for output templates

* Added presets for the entire media profile form

* Append `-thumb` to thumbnails when downloading (#87)

* Appended -thumb to thumbnails when downloading

* Added code to compensate for yt-dlp bug

* Squash all the commits from the other branch bc I broke things (#88)
2024-03-14 18:30:08 -07:00
.github Added image tagging input to GH actions (#53) 2024-03-04 18:37:15 -08:00
assets Pre-prepare for alpha launch (#44) 2024-03-01 19:47:19 -08:00
config Improve episode-level compatability with media center apps (#86) 2024-03-14 18:30:08 -07:00
lib Improve episode-level compatability with media center apps (#86) 2024-03-14 18:30:08 -07:00
priv Improve episode-level compatability with media center apps (#86) 2024-03-14 18:30:08 -07:00
rel/overlays/bin Prod packaging v1 (#23) 2024-02-16 18:50:00 -08:00
test Improve episode-level compatability with media center apps (#86) 2024-03-14 18:30:08 -07:00
.check.exs Upgrade to Elixir 1.16.2 (#71) 2024-03-11 18:47:13 -07:00
.credo.exs Refactor modules into contexts (#78) 2024-03-12 17:54:55 -07:00
.dockerignore Prod packaging v1 (#23) 2024-02-16 18:50:00 -08:00
.formatter.exs Redo indexing mechanism (#16) 2024-02-09 18:23:37 -08:00
.gitignore Switch to sqlite (#22) 2024-02-16 17:11:41 -08:00
.iex.exs Refactor modules into contexts (#78) 2024-03-12 17:54:55 -07:00
.prettierignore Add CI (#4) 2024-01-19 23:43:25 -08:00
.prettierrc.js Initial setup (first pass) (#1) 2024-01-19 17:49:16 -08:00
.sobelow-conf Improve dev tooling (#30) 2024-02-21 17:28:27 -08:00
dev.Dockerfile Adds local details to local dockerfile (#75) 2024-03-11 20:05:19 -07:00
docker-compose.ci.yml Improve dev tooling (#30) 2024-02-21 17:28:27 -08:00
docker-compose.yml Prod packaging v1 (#23) 2024-02-16 18:50:00 -08:00
docker-run.dev.sh Prod packaging v1 (#23) 2024-02-16 18:50:00 -08:00
ideas.md Upgrade to Elixir 1.16.2 (#71) 2024-03-11 18:47:13 -07:00
LICENSE Pre-prepare for alpha launch (#44) 2024-03-01 19:47:19 -08:00
mix.exs Bumped version 2024-03-12 20:25:01 -07:00
mix.lock Refactor modules into contexts (#78) 2024-03-12 17:54:55 -07:00
package.json Pre-prepare for alpha launch (#44) 2024-03-01 19:47:19 -08:00
README.md [Bugfix] Fix basic auth in deployed apps (#52) 2024-03-04 18:29:26 -08:00
selfhosted.Dockerfile Upgrade to Elixir 1.16.2 (#71) 2024-03-11 18:47:13 -07:00
yarn.lock Add CI (#4) 2024-01-19 23:43:25 -08:00

Pinchflat (Alpha)

This is alpha software and anything can break at any time. I make not guarantees about the stability of this software, forward-compatibility of updates, or integrity (both related to and independent of Pinchflat). Essentially, use at your own risk and expect there will be rough edges.

What is Pinchflat?

TODO: expand on this.

Pinchflat is a lightweight self-contained app for downloading YouTube content. For now, it is not intended as a way to consume content, but instead as a way to download content to disk using specified rules and schedules.

I have plans for more to come, but for now this is the focus. Think of Pinchflat as nothing more than an automated way to get content from YouTube to your disk.

Installation

Pinchflat is designed to be self-hosted. I'm building it for my own needs which means it's designed to work well with Unraid, but it should work on any computer/server that can run Docker images.

I'll update with Unraid instructions once I get something in the Community Apps store. Until then, here's how you build it with Docker:

docker build . --file selfhosted.Dockerfile -t pinchflat:dev

docker run \
  -p 8945:8945 \
  -v /Users/work/Desktop/test_volumes/config:/config \
  -v /Users/work/Desktop/test_volumes/downloads:/downloads \
  pinchflat:dev

Authentication

Currently HTTP basic auth is optionally supported. To use it, set the BASIC_AUTH_USERNAME and BASIC_AUTH_PASSWORD environment variables when starting the container. If you don't set both of these, no authentication will be required.

License

See LICENSE file