Compare commits

...

2 commits

Author SHA1 Message Date
f250c4a6f4
Updated README 2020-09-04 21:43:39 -06:00
7290d6f6e7
Changed file name, now also using /run instead of /tmp
Changed the file name since its supposed to be in the binary directory

Moved virtual microphone to /run since thats where those kinds of
things go
2020-09-04 21:42:37 -06:00
2 changed files with 30 additions and 1 deletions

View file

@ -0,0 +1,29 @@
# VirtPlay
VirtPlay is a bash script to automate playing video or audio files over a fake PulseAudio microphone or fake v4l2loopback webcam.
## Depends
- [ffmpeg](https://ffmpeg.org/)
- [v4l2loopback](https://github.com/umlaeute/v4l2loopback)
## Installation
- Clone this repository
- Ensure that ~/.local/bin is in your PATH
- Copy virtplay to ~/.local/bin
## Options
| **Option** | **Default** | **Description** |
|------------------------|--------------------------|---------------------------------------------------------------------------------|
| `-r` `--resolution` | `1920x1080` | Changes the resolution of the fake webcam |
| `-f` `--fps` | `30` | Changes the frame rate of the fake webcam |
| `-b` `--border` | `true` | Enables/disables changing the input video's aspect ratio to fit the fake webcam |
| `-l` `--loopback` | `true` | Enables/disables playing the virtual microphone through your speakers |
| `-ar` `--audio-rate` | `44100` | Changes the audio sampling rate of the fake microphone |
| `-c` `--channels` | `1` | Changes the number of audio channels the fake microphone has |
| `-ao` `--audio-only` | `false` | Only uses the fake microphone |
| `-vo` `--video-only` | `false` | Only uses the fake webcam |
| `-vd` `--video-device` | `/dev/video0` | Changes which v4l2loopback device to use |
| `-ad` `--audio-device` | `/run/user/$UID/virtmic` | Changes the path that the fake microphone pipe is created at |
| `-bf` `--buffer-file` | `/tmp/virtplay` | Changes the path that the stdin buffer file is created at |
| `-t` `--timestamp` | `0` | Jumps play head to timestamp in either seconds or [HH:]MM:SS[.m...] |
| `-v` `--volume` | `1` | Sets the volume 0-1, where 0 is 0% and 1 is 100% |
| `-h` `--help` | | Displays a help message |

View file

@ -14,7 +14,7 @@ LOOPBACK=true
VIDEO=true VIDEO=true
AUDIO=true AUDIO=true
VIDEODEVICE=/dev/video0 VIDEODEVICE=/dev/video0
AUDIODEVICE=/tmp/virtmic AUDIODEVICE=/run/user/$UID/virtmic
BUFFERFILE=/tmp/virtplay BUFFERFILE=/tmp/virtplay
FFMPEGOPTIONS="" FFMPEGOPTIONS=""