Skip to content

Commit

Permalink
better tags
Browse files Browse the repository at this point in the history
  • Loading branch information
JAlcocerT committed Jan 8, 2024
1 parent 736a769 commit d5ae5cd
Show file tree
Hide file tree
Showing 6 changed files with 96 additions and 5 deletions.
6 changes: 4 additions & 2 deletions _posts/2021-08-03-rpi-hdmi.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Adjust HDMI Signal
title: Adjust Raspberry Pi HDMI Signal
author: JAlcocerT
date: 2021-08-03 00:34:00 +0800
categories: [RPi Setup]
Expand All @@ -12,6 +12,8 @@ Try connecting through SSH or to a smaller display, then:

While connecting your RPi to some displays, you might get no signal to display the desktop.

## How to Fix no HDMI Signal?

Try connecting through SSH or to a smaller display, then:

```sh
Expand All @@ -32,4 +34,4 @@ And uncomment the line with: =1


> Then save the file by pressing: CTRL+O and exit with: CTRL+X
{: .prompt-info }
{: .prompt-info }
2 changes: 1 addition & 1 deletion _posts/2022-07-25-selfhosting-with-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Raspberry Pi - Self-Hosting anything with Docker
author: JAlcocerT
date: 2022-07-25 14:10:00 +0800
categories: [RPi Setup]
tags: [Self-Hosting, Docker]
tags: [Self-Hosting, Docker, RPi 101]
render_with_liquid: false
---

Expand Down
78 changes: 78 additions & 0 deletions _posts/2022-08-10-youtube-video-download.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
---
title: Youtube Alternatives
author: JAlcocerT
date: 2022-08-10 14:10:00 +0800
categories: [Make your Raspberry Useful]
tags: [Self-Hosting,Docker]
render_with_liquid: false
---

So you have your Raspberry Pi [ready to SelfHost with Docker](https://jalcocert.github.io/RPi/posts/selfhosting-with-docker/) and you are looking for some YT alternatives.

Here you have few of them - Get your RPi's to work!

## Youtube-DL Material

It will allow you to Download YT Videos / Music - Even to Subscribe to your favourite Channels without a Google account..

```sh
#curl -L https://github.com/Tzahi12345/YoutubeDL-Material/releases/latest/download/docker-compose.yml -o docker-compose.yml
```

```yml
version: "2"
services:
ytdl_material:
environment:
ytdl_mongodb_connection_string: 'mongodb://ytdl-mongo-db:27017'
ytdl_use_local_db: 'false'
write_ytdl_config: 'true'
restart: always
depends_on:
- ytdl-mongo-db
volumes:
- ./appdata:/app/appdata
- ./audio:/app/audio
- ./video:/app/video
- ./subscriptions:/app/subscriptions
- ./users:/app/users
ports:
- "8998:17442"
image: tzahi12345/youtubedl-material:latest
ytdl-mongo-db:
# If you are using a Raspberry Pi, use mongo:4.4.18
image: mongo:4
logging:
driver: "none"
container_name: mongo-db
restart: always
volumes:
- ./db/:/data/db
```
After deployment - just visit: http://localhost:8998.
if you want to get to know more about the project: <https://tzahi12345.github.io/YoutubeDL-Material/>
## Piped
Another front end for Youtube:
```sh
git clone https://github.com/TeamPiped/Piped-Docker
cd Piped-Docker

./configure-instance.sh

docker compose up -d
```


The project: <https://github.com/TeamPiped/Piped>


## FAQ

### How to use RSS to subscribe to YT channels?

<https://fossengineer.com/selfhosting-freshrss-with-docker>
2 changes: 1 addition & 1 deletion _posts/2022-09-01-selfhosting-nextcloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Raspberry Pi as your Cloud Storage - with Nextcloud & Docker
author: JAlcocerT
date: 2022-09-01 14:10:00 +0800
categories: [RPi Setup]
categories: [Make your Raspberry Useful]
tags: [Self-Hosting, Docker]
render_with_liquid: false
---
Expand Down
2 changes: 1 addition & 1 deletion _posts/2024-01-04-rpi-ansible.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: IoT Projects with Ansible and Raspberry Pi
author: JAlcocerT
date: 2024-01-04 00:34:00 +0800
categories: [IoT & Data Analytics]
tags: [Self-Hosting]
tags: [Self-Hosting, Docker]
---

So you have a Raspberry Pi and want to get started with IoT Project.
Expand Down
11 changes: 11 additions & 0 deletions _posts/2024-12-01-ollama-raspberry-pi.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: Ollama with Raspberry Pi
author: JAlcocerT
date: 2024-12-04 00:34:00 +0800
categories: [IoT & Data Analytics, AI]
tags: [Self-Hosting, Docker]
---

---

## FAQ

0 comments on commit d5ae5cd

Please sign in to comment.