-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from leguye/master
Add unit tests, refactor, new slideshow feature, other improvements
- Loading branch information
Showing
7 changed files
with
1,454 additions
and
590 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,8 @@ build/ | |
src/ | ||
ly2video.tmp/ | ||
README.html | ||
*~ | ||
*.pyc | ||
.project | ||
.settings | ||
.pydevproject |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
--slide-show | ||
|
||
The option --slide-show adds the possibility to display a slide shown up to the score. | ||
This slide show is composed of a set of png files | ||
- sharing a common prefix (for example "/path/to/dir/slide-") | ||
- having each one a suffix with the format "0000.0000.png", giving | ||
the offset (in quarters) when the image must be displayed. | ||
|
||
For example, given these files: | ||
/path/to/dir/slide-0000.0000.png | ||
/path/to/dir/slide-0000.0050.png | ||
/path/to/dir/slide-0008.0025.png | ||
|
||
with the command: | ||
ly2video --slide-show "/path/to/dir/slide-" ... | ||
|
||
The first file will be displayed at the begining of the score. | ||
The second one replaces the first one at offset 0.5000 (one eighth after the start), and so on. | ||
|
||
|
||
|
Oops, something went wrong.