root/misc/loop.sh

Revision 8c0c8a9b0b39b3ceb42fd0721598b8f6bc4c3175, 331 bytes (checked in by Robin Gareus <robin@…>, 2 years ago)

new encoder script for tags

  • Property mode set to 100644
Line 
1#!/bin/sh
2
3FILES="Celluloidremix-EenDoordeweekseDag19325min50397.ogg"
4
5function loopcat {
6  while true; do 
7    cat $FILES
8  done
9}
10
11while true; do 
12  loopcat \
13  | oggfwd theartcollider.net 8002 inoutsource -p -g "InOut" -n "example1" -d "1932 documentary footage" example1.ogv;
14
15  echo "---- LOST CONNECTION ----"
16  sleep 2
17done
Note: See TracBrowser for help on using the browser.