diff options
author | MaZderMind <github@mazdermind.de> | 2015-05-16 13:56:06 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2015-05-16 13:56:06 +0200 |
commit | a65e23624ca401d11f30559c7b759420fd5fa5b7 (patch) | |
tree | 31c8ab3ed5b9f0bf8398c0c3376cfb7cca4b8fd9 /voctocore/scripts/av-source-eevblog-ffmpeg.sh | |
parent | ab86ee919a3672b5e881cde3898d545664b8d836 (diff) |
Add ffmpeg source scripts
Diffstat (limited to 'voctocore/scripts/av-source-eevblog-ffmpeg.sh')
-rw-r--r-- | voctocore/scripts/av-source-eevblog-ffmpeg.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/voctocore/scripts/av-source-eevblog-ffmpeg.sh b/voctocore/scripts/av-source-eevblog-ffmpeg.sh new file mode 100644 index 0000000..3c3aab9 --- /dev/null +++ b/voctocore/scripts/av-source-eevblog-ffmpeg.sh @@ -0,0 +1,8 @@ +#!/bin/sh +ffmpeg -y \ + -i $HOME/eevblog.mp4 \ + -c:v rawvideo \ + -c:a pcm_s16le \ + -af aresample=48000 \ + -f matroska \ + tcp://localhost:10000 |