more documentation
Stefan Schuermans authored 12 years ago
|
1) <html>
2) <head>
3) <title>Blinker - Player</title>
4) </head>
5) <body>
6) <h1>Blinker - Player</h1>
7) <p>
8) The player module plays Blinken movies from a playlist.
9) </p>
10) <h2>Configuration</h2>
11) <p>
12) The configuration of the player module with name <code>NAME</code>
13) is located in the <code>players/NAME</code> subdirectory.
14) </p>
15) <h3>Playlist</h3>
16) <p>
17) The playlist contains all movies in the subdirectory
18) <code>playlist</code>.
19) The movies are played in alphanumerical order.
20) </p>
21) <h3>Output Stream</h3>
22) <p>
23) The file <code>outstream</code> contains the name of the stream to
24) send the frames to.
25) </p>
|
implemented halting player...
Stefan Schuermans authored 12 years ago
|
26) <h3>Halt Stream</h3>
27) <p>
28) The player can be halted whenever another stream is active.
29) Therefore, the name of the other stream is written to the file
30) <code>haltstream</code>.
31) When the halt stream becoms active, the current frame is frozen,
32) i.e. the frame is kept.
33) When the halt stream ends, the player resumes with the remaining
34) time for the current frame and continues as usual afterwards.
35) <br>
36) If this feature is not needed, the file <code>haltstream</code>
37) should not exist.
38) </p>
|