@@ -20,19 +20,21 @@ Options:
20
20
-l, --slave
21
21
-x DESTINATION, --destination=DESTINATION
22
22
-u, --loop
23
- -v, --verbose
23
+ -v, --verbose
24
+ -o ADEV, --adev=ADEV
25
+ -a ASPECT, --aspect=ASPECT Aspect Mode - fill, letterbox, stretch
24
26
```
25
27
26
- ** master **
28
+ ** Master **
27
29
28
30
```
29
- omxplayer-sync -muv movie1.mp4 movie2.mp4 /movies/*
31
+ omxplayer-sync -m movie1.mp4
30
32
```
31
33
32
- ** slave **
34
+ ** Slave **
33
35
34
36
```
35
- omxplayer-sync -luv movie1.mp4 movie2.mp4 /movies/*
37
+ omxplayer-sync -l movie1.mp4
36
38
```
37
39
38
40
@@ -45,21 +47,25 @@ A recent build of omxplayer from [Sergio Conde](http://omxplayer.sconde.net).
45
47
46
48
Installation on Raspbian
47
49
------------------------
50
+ Perform on both master and slave.
48
51
```
49
- su -
52
+ sudo su
50
53
apt-get remove omxplayer
51
54
rm -rf /usr/bin/omxplayer /usr/bin/omxplayer.bin /usr/lib/omxplayer
52
55
apt-get install libpcre3 fonts-freefont-ttf fbset libssh-4 python3-dbus
53
- wget http://omxplayer.sconde.net/builds/omxplayer_0.3.7~git20160713~66f9076_armhf .deb
54
- dpkg -i omxplayer_0.3.7~git20160713~66f9076_armhf .deb
56
+ wget http://omxplayer.sconde.net/builds/omxplayer_0.3.7~git20170130~62fb580_armhf .deb
57
+ dpkg -i omxplayer_0.3.7~git20170130~62fb580_armhf .deb
55
58
wget -O /usr/bin/omxplayer-sync https://github.com/turingmachine/omxplayer-sync/raw/master/omxplayer-sync
56
59
chmod 0755 /usr/bin/omxplayer-sync
57
60
wget https://github.com/turingmachine/omxplayer-sync/raw/master/synctest.mp4
61
+ ```
58
62
59
- # start on master
63
+ Start on Master (-u loop, -v verbose)
64
+ ```
60
65
omxplayer-sync -muv synctest.mp4
61
-
62
- # start on slave
66
+ ```
67
+ Start on Slave (-u loop, -v verbose)
68
+ ```
63
69
omxplayer-sync -luv synctest.mp4
64
70
```
65
71
0 commit comments