Diff
Differences From Artifact [e9d8c94f99]:
- File channels/__init__.py — part of check-in [f48ad79aa1] at 2017-01-05 21:33:50 on branch trunk — Fix `links` plugin format: attribute; make it understood by channel.play() that a homepage-only row triggers the web browser. (user: mario, size: 32611) [annotate] [blame] [check-ins using]
To Artifact [ab1b538656]:
- File
channels/__init__.py
— part of check-in
[f9c725e90b]
at
2020-05-10 15:17:41
on branch trunk
— Adapt Xiph plugin for BETA/dir-test.xoph.org rollout. It's fairly terrible:
homepages gone, bitrate unavailable, case-sensitive category segregration.
On the upside: direct streaming server urls.
The 'cache' mode is likely broken soon, since the experimental JSON API is gone.
For now using `.title()` on /genre/{} search. Adapted guess_format to recognize AAC. Subtitle is used in lieu of On Air: text for playing= (user: mario, size: 32629) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
815 816 817 818 819 820 821 | # clean string s = s.lower().strip() # rename map = { "audio/mp3":"audio/mpeg", # Note the real mime type is /mpeg, but /mp3 is more understandable in the GUI "ogg":"ogg", "ogm":"ogg", "xiph":"ogg", "vorbis":"ogg", "vnd.xiph.vorbis":"ogg", "mp3":"mpeg", "mp":"mpeg", "mp2":"mpeg", "mpc":"mpeg", "mps":"mpeg", | | | 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 | # clean string s = s.lower().strip() # rename map = { "audio/mp3":"audio/mpeg", # Note the real mime type is /mpeg, but /mp3 is more understandable in the GUI "ogg":"ogg", "ogm":"ogg", "xiph":"ogg", "vorbis":"ogg", "vnd.xiph.vorbis":"ogg", "mp3":"mpeg", "mp":"mpeg", "mp2":"mpeg", "mpc":"mpeg", "mps":"mpeg", "aac+":"aac", "aacp":"aac", "aac+":"aac", "realaudio":"x-pn-realaudio", "real":"x-pn-realaudio", "ra":"x-pn-realaudio", "ram":"x-pn-realaudio", "rm":"x-pn-realaudio", # yes, we do video "flv":"video/flv", "mp4":"video/mp4", } #map.update(action.listfmt_t) # list type formats (.m3u .pls and .xspf) if map.get(s): s = map[s] |
︙ | ︙ |