mirror of
https://github.com/tiyn/wiki.git
synced 2025-04-19 22:17:45 +02:00
Compare commits
No commits in common. "4f872ce5fb19c4aed6eef48bae89433dbf9fb4dd" and "8161e2d1e3e9c681a2bb8c32b854c39de3925aac" have entirely different histories.
4f872ce5fb
...
8161e2d1e3
@ -3,9 +3,3 @@
|
|||||||
[Android](https://www.android.com/) is a mobile operating system based on a modified
|
[Android](https://www.android.com/) is a mobile operating system based on a modified
|
||||||
[Linux](/wiki/linux.md) kernel.
|
[Linux](/wiki/linux.md) kernel.
|
||||||
It is designed primarily for mobile devices with touch screens like tablets or smart phones.
|
It is designed primarily for mobile devices with touch screens like tablets or smart phones.
|
||||||
|
|
||||||
## App Store
|
|
||||||
|
|
||||||
The most used app store of android is the [Google Play Store](https://play.google.com/).
|
|
||||||
A free and open-source alternative to it is [F-Droid](/wiki/android/f-droid.md) which only features
|
|
||||||
open-source software.
|
|
||||||
|
@ -1,34 +0,0 @@
|
|||||||
# DroidCam
|
|
||||||
|
|
||||||
[DroidCam](https://www.dev47apps.com/) is an App developed and published
|
|
||||||
by Dev47Apps for [Android](/wiki/android.md) systems.
|
|
||||||
It enables a [smartphone](/wiki/smart_devices.md) to be used as [webcam](/wiki/webcams.md).
|
|
||||||
|
|
||||||
## Setup
|
|
||||||
|
|
||||||
DroidCam needs to be set up on the phone aswell as on the computer to be used.
|
|
||||||
|
|
||||||
On [Android](/wiki/android.md) Gadgetbridge is available on the
|
|
||||||
[Google Play Store](/wiki/android.md#app-store) in a package called
|
|
||||||
[DroidCam Webcam](https://play.google.com/store/apps/details?id=com.dev47apps.droidcam).
|
|
||||||
|
|
||||||
On the computer setup files for both [Linux](/wiki/linux.md) and [Windows](/wiki/windows.md) can be
|
|
||||||
found on the [official Dev47Apps](https://www.dev47apps.com/).
|
|
||||||
Alternatively most [Linux systems](/wiki/linux/package_manager.md) feature a package named
|
|
||||||
`droidcam`.
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
To initiate a connection between the [smartphone](/wiki/smart_devices.md) and the computer first
|
|
||||||
start the app on the smartphone.
|
|
||||||
Make sure to be connected to the same W-LAN as the computer or alternatively connect them with an
|
|
||||||
USB-cable.
|
|
||||||
After starting the application an IP and a port will be displayed.
|
|
||||||
These have to be pasted into the form that is shown on the computer after starting the corresponding
|
|
||||||
program.
|
|
||||||
After pressing `Connect` the link will be established.
|
|
||||||
The [video feed](/wiki/webcams.md) can then be used in other programs such as Discord or
|
|
||||||
[Matrix](/wiki/matrix.md).
|
|
||||||
Additionally it can be piped into [OBS](/wiki/obs.md) to edit it more or create a scene.
|
|
||||||
Despite the option the separate app [DroidCam OBS](https://www.dev47apps.com/obs/) is not
|
|
||||||
necessarily needed.
|
|
@ -8,8 +8,8 @@ It is a cloudless replacement for proprietary software for
|
|||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
Gadgetbridge is available on [F-Droid](/wiki/android/f-droid.md) in a package called
|
To install F-Droid simply download and install the
|
||||||
[gadgetbridge](https://f-droid.org/packages/nodomain.freeyourgadget.gadgetbridge/).
|
[package](https://f-droid.org/packages/nodomain.freeyourgadget.gadgetbridge/).
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
@ -1,66 +0,0 @@
|
|||||||
# tombursch - kitchenowl
|
|
||||||
|
|
||||||
This is a [Docker](/wiki/docker.md) container for a [kitchenowl](kitchenowl)
|
|
||||||
server.
|
|
||||||
The official container and documentation was made by
|
|
||||||
[tombursch](https://github.com/tombursch/kitchenowl).
|
|
||||||
This docker-rebuild is made up by a `docker-compose.yml` file.
|
|
||||||
The Server consists of two Docker containers, one is the kitchenowl frontend, another is a backend.
|
|
||||||
|
|
||||||
## Set-up
|
|
||||||
|
|
||||||
Create the files `rebuild.sh` and `docker-compose.yml` at the same
|
|
||||||
place.
|
|
||||||
Make sure to change `JWT_SECRET_KEY`.
|
|
||||||
Change the settings according to your needs and run `./rebuild.sh` afterwards.
|
|
||||||
|
|
||||||
## Ports
|
|
||||||
|
|
||||||
Set the following ports in the `ports:` section.
|
|
||||||
|
|
||||||
| Container Port | Recommended outside port | Protocol | Description |
|
|
||||||
| -------------- | ------------------------ | -------- | ----------- |
|
|
||||||
| `7890` | `80` | TCP | WebUI |
|
|
||||||
|
|
||||||
## Volumes
|
|
||||||
|
|
||||||
Set the following volumes with the -v tag.
|
|
||||||
|
|
||||||
| Outside mount/volume name | Container mount | Description |
|
|
||||||
| ------------------------- | -------------------------- | ------------------------ |
|
|
||||||
| `kitchenowl_data` | `/data` | storage for all data |
|
|
||||||
|
|
||||||
## rebuild.sh
|
|
||||||
|
|
||||||
```sh
|
|
||||||
#!/bin/sh
|
|
||||||
docker-compose down
|
|
||||||
docker pull tombursch/kitchenowl-web:latest
|
|
||||||
docker pull tombursch/kitchenowl:latest
|
|
||||||
docker-compose up -d
|
|
||||||
```
|
|
||||||
|
|
||||||
## docker-compose.yml
|
|
||||||
|
|
||||||
```yml
|
|
||||||
version: "3"
|
|
||||||
services:
|
|
||||||
kitchenowl:
|
|
||||||
image: tombursch/kitchenowl-web:latest
|
|
||||||
restart: unless-stopped
|
|
||||||
depends_on:
|
|
||||||
- back
|
|
||||||
ports:
|
|
||||||
- 7890:80
|
|
||||||
back:
|
|
||||||
image: tombursch/kitchenowl:latest
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
|
||||||
- JWT_SECRET_KEY=changethis
|
|
||||||
volumes:
|
|
||||||
- kitchenowl_data:/data
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
kitchenowl_data:
|
|
||||||
driver: local
|
|
||||||
```
|
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
[Magic: The Gathering](https://magic.wizards.com) - often shortened to MTG or Magic - is a tabletop
|
[Magic: The Gathering](https://magic.wizards.com) - often shortened to MTG or Magic - is a tabletop
|
||||||
collectible card game.
|
collectible card game.
|
||||||
MTG is published by [Wizards of the Coast](https://company.wizards.com) - which are commonly
|
There is an online version called [Magic: The Gathering Arena](https://magic.wizards.com/mtgarena) -
|
||||||
reffered to as Wizards.
|
or MTGA for short - that has the same rules as the tabletop variant.
|
||||||
|
|
||||||
## Resources
|
## Resources
|
||||||
|
|
||||||
@ -20,19 +20,3 @@ The following list provides a select few of them.
|
|||||||
It is free and open-source.
|
It is free and open-source.
|
||||||
Its source code can be looked at on their
|
Its source code can be looked at on their
|
||||||
[GitHub Page](https://github.com/nicho92/MtgDesktopCompanion).
|
[GitHub Page](https://github.com/nicho92/MtgDesktopCompanion).
|
||||||
|
|
||||||
## Playing Online
|
|
||||||
|
|
||||||
There is a fully digital and online version of MTG called
|
|
||||||
[Magic: The Gathering Arena](https://magic.wizards.com/mtgarena) - or MTGA for short - that has the
|
|
||||||
same rules as the tabletop variant.
|
|
||||||
|
|
||||||
It is also possible to remotely play with tabletop cards.
|
|
||||||
This is most easily done on [Spelltable](https://spelltable.wizards.com/) which is an official
|
|
||||||
website by Wizards.
|
|
||||||
For playing Spelltable a [webcam](/wiki/webcams.md) is needed to be set up with a bird's eye view
|
|
||||||
over the playing field.
|
|
||||||
An alternative to a normal webcam is [DroidCam](/wiki/android/droidcam.md) for
|
|
||||||
[Android](/wiki/android.md) which is supported by the website itself.
|
|
||||||
|
|
||||||
Both Spelltable and MTGA use the same login credentials.
|
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
# kitchenowl
|
|
||||||
|
|
||||||
[kitchenowl](https://kitchenowl.org/) is an application for managing recipes, meals and
|
|
||||||
shop lists.
|
|
||||||
|
|
||||||
## Setup
|
|
||||||
|
|
||||||
The software can be setup via [Docker](/wiki/docker.md) with the
|
|
||||||
[tombursch image](/wiki/docker/tombursch_-_kitchenowl.md).
|
|
@ -2,8 +2,7 @@
|
|||||||
|
|
||||||
V4L2 is the second version of
|
V4L2 is the second version of
|
||||||
[Video4Linux](https://www.linuxtv.org/wiki/index.php/Main_Page).
|
[Video4Linux](https://www.linuxtv.org/wiki/index.php/Main_Page).
|
||||||
It functions as a driver for [webcams](/wiki/webcams.md) and [tv tuner cards](/wiki/video.md) and
|
It functions as a driver for webcams and tv tuner cards and other devices.
|
||||||
other devices.
|
|
||||||
|
|
||||||
## v4l2loopback
|
## v4l2loopback
|
||||||
|
|
||||||
|
@ -10,20 +10,11 @@ Linux operating system.
|
|||||||
The editing of a video stream provided by a webcam can be achieved by using
|
The editing of a video stream provided by a webcam can be achieved by using
|
||||||
[OBS](/wiki/obs.md) together with the
|
[OBS](/wiki/obs.md) together with the
|
||||||
[OBS Virtual Camera plugin](/wiki/obs.md#virtual-camera).
|
[OBS Virtual Camera plugin](/wiki/obs.md#virtual-camera).
|
||||||
This works on [Windows](/wiki/windows.md) aswell as [Linux](/wiki/linux.md) and can be used for any
|
|
||||||
webcam available.
|
|
||||||
|
|
||||||
## Configure the Webcam
|
## Configure the Webcam
|
||||||
|
|
||||||
On Linux a webcam can be configured with [guvcview](https://guvcview.sourceforge.net/).
|
A webcam can be configured with [guvcview](https://guvcview.sourceforge.net/).
|
||||||
This program provides a simple interface for capturing and viewing video from a
|
This program provides a simple interface for capturing and viewing video from a
|
||||||
[v4l2](/wiki/linux/v4l2.md) device and is thus dependent on v4l2.
|
[v4l2](./v4l2.md) device and is thus dependent on v4l2.
|
||||||
Additionally guvcview provides an interface to configure various webcam settins
|
Additionally guvcview provides an interface to configure various webcam settins
|
||||||
and enable a few effects on top of it.
|
and enable a few effects on top of it.
|
||||||
|
|
||||||
## Using a Smartphone as Webcam
|
|
||||||
|
|
||||||
A [smartphone](/wiki/smart_devices.md) and its camera aswell as flashlight can be used as a simple
|
|
||||||
replacement for a webcam.
|
|
||||||
For [Android](/wiki/android.md) smartphones this can be easily achieved by using
|
|
||||||
[DroidCam](/wiki/android/droidcam.md).
|
|
@ -2,7 +2,8 @@
|
|||||||
|
|
||||||
[Open Broadcaster Software](https://obsproject.com) - short OBS - is a free
|
[Open Broadcaster Software](https://obsproject.com) - short OBS - is a free
|
||||||
and open source software for video recording and live streaming.
|
and open source software for video recording and live streaming.
|
||||||
For webcams and their configuration see [the webcams entry](/wiki/webcams.md#configure-the-webcam).
|
Additionally see the
|
||||||
|
[the webcams entry](/wiki/linux/webcams.md#configure-the-webcam) if on Linux.
|
||||||
|
|
||||||
## Plugins
|
## Plugins
|
||||||
|
|
||||||
|
@ -7,12 +7,3 @@ shop lists.
|
|||||||
|
|
||||||
The software can be setup via [Docker](/wiki/docker.md) with the
|
The software can be setup via [Docker](/wiki/docker.md) with the
|
||||||
[vabene1111 image](/wiki/docker/vabene1111_-_recipes.md).
|
[vabene1111 image](/wiki/docker/vabene1111_-_recipes.md).
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
Tandoor Recipes can be used as a web application.
|
|
||||||
One possible app that is capable of connecting to a Tandoor Recipes server is Untare.
|
|
||||||
It is available for [Android](/wiki/android.md)on the
|
|
||||||
[Google Play Store](/wiki/android.md#app-store)
|
|
||||||
[via this link](https://play.google.com/store/apps/details?id=unofficial.tandoor.recipes) and for
|
|
||||||
iOS [via this link](https://apps.apple.com/de/app/untare/id6448643329).
|
|
||||||
|
@ -1,10 +1,5 @@
|
|||||||
# Video
|
# Video
|
||||||
|
|
||||||
Video is an electronic medium of visual media.
|
|
||||||
This entry will mostly be focused on movies, tv shows an other media such as
|
|
||||||
[YouTube](/wiki/youtube.md) aswell as its metadata.
|
|
||||||
For webcams navigate to the [webcams entry](/wiki/webcams.md).
|
|
||||||
|
|
||||||
It is nice to have some movies, tv shows or other videos saved on your system.
|
It is nice to have some movies, tv shows or other videos saved on your system.
|
||||||
There are multiple different approaches on how to get it working depending on
|
There are multiple different approaches on how to get it working depending on
|
||||||
your needs.
|
your needs.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user