Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
mdhelp: allow to override (extend) property docs - example - DVR config
- Loading branch information
Showing
8 changed files
with
129 additions
and
27 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
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,32 @@ | ||
| : Command to run after finishing a recording. The command will be run in | ||
| background and is executed even if a recording is aborted or an error | ||
| occurred. Use the %e error formatting string to check for errors, the | ||
| error string is “OK” if recording finished successfully. | ||
|
|
||
| Supported format strings: | ||
|
|
||
|
|
||
| Format | Description | Example value | ||
| :-----:| ----------------------------------------- | ------------- | ||
| `%f` | Full path to recording | /home/user/Videos/News.mkv | ||
| `%b` | Basename of recording | News.mkv | ||
| `%c` | Channel name | BBC world | ||
| `%O` | Owner of this recording | user | ||
| `%C` | Who created this recording | user | ||
| `%t` | Program title | News | ||
| `%s` | Program subtitle | Afternoon | ||
| `%p` | Program episode | S02.E07 | ||
| `%d` | Program description | News and stories… | ||
| `%e` | Error message | Aborted by user | ||
| `%S` | Start time stamp of recording, UNIX epoch | 1224421200 | ||
| `%E` | Stop time stamp of recording, UNIX epoch | 1224426600 | ||
| `%r` | Number of errors during recording | 0 | ||
| `%R` | Number of data errors during recording | 6 | ||
|
|
||
| *Example usage* | ||
|
|
||
| To use special characters (e.g. spaces), either put the string in quotes or | ||
| escape the individual characters. | ||
|
|
||
| ```/path/to/ffmpeg -i "%f" -vcodec libx264 -acodec copy "/path/with white space/%b"``` | ||
|
|
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
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
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
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
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
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