summaryrefslogtreecommitdiffstats
path: root/mpeglib/example/yaf/yafsplay/stresstest
blob: caeba5981fbebae6a335f4803ad80fc23c7b2133 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

declare -i zahl=150
declare -i zahl1=3
rm -f jumptable

while [ 0 -le $zahl ] ; do 
 echo "j $zahl" >>jumptable
 echo "sleep 1" >>jumptable
 echo "j $zahl1" >>jumptable
 echo "sleep 1" >>jumptable

 zahl=$[zahl-7]
 zahl1=$[zahl1+7]
done

echo "quit" >>jumptable

for i in "/mnt/diskD/rh/mp3/neu3"/* ; do
 echo "open $i" >yaf.script
 ./yaf-splay <jumptable
 sleep 5
done