Check-in [4a3b5153d8]
Overview
| Comment: | Add missing quotes for streamripper default option. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
4a3b5153d83168e7258a34da486c92c2 |
| User & Date: | mario on 2015-05-24 16:59:12 |
| Other Links: | manifest | tags |
Context
|
2015-05-24
| ||
| 17:46 | Fix unqualified icon_dir reference. check-in: e2c2c405e7 user: mario tags: trunk | |
| 16:59 | Add missing quotes for streamripper default option. check-in: 4a3b5153d8 user: mario tags: trunk | |
| 16:58 | Remove url= attribute in main entry points in favour of row{} check-in: a73f762152 user: mario tags: trunk | |
Changes
Modified config.py from [b290c1e0fd] to [6f5292e90f].
| ︙ | ︙ | |||
116 117 118 119 120 121 122 |
"audio/ogg": self.find_player(),
"audio/*": self.find_player(),
"video/youtube": self.find_player(typ="video") + " $(youtube-dl -g %srv)",
"video/*": self.find_player(typ="video", default="vlc"),
"url/http": self.find_player(typ="browser"),
}
self.record = {
| | | 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
"audio/ogg": self.find_player(),
"audio/*": self.find_player(),
"video/youtube": self.find_player(typ="video") + " $(youtube-dl -g %srv)",
"video/*": self.find_player(typ="video", default="vlc"),
"url/http": self.find_player(typ="browser"),
}
self.record = {
"audio/*": self.find_player(typ="xterm") + " -e \"streamripper %srv\"", # -d /home/***USERNAME***/Musik
"video/youtube": self.find_player(typ="xterm") + " -e \"youtube-dl %srv\"",
}
# Presets are redundant now. On first startup the `priority:` field of each plugin is checked.
self.plugins = {
# core plugins, cannot be disabled anyway
"bookmarks": 1,
"search": 1,
|
| ︙ | ︙ |