MythTV master
music163.py
Go to the documentation of this file.
1# -*- Mode: python; coding: utf-8; indent-tabs-mode: nil; -*-
2
3from common import culrcwrap
4from lib.culrcscrapers.music163.lyricsScraper import LyricsFetcher
5# make sure this-------^^^^^^^^^ matches this file's basename
6
7info = {
8 'name': '*Music163',
9 'description': 'Search http://music.163.com for synchronized lyrics',
10 'author': 'ronie',
11 'priority': '120',
12 'syncronized': True,
13 'artist': 'Madonna',
14 'title': 'Vogue',
15}
16
17# -a Rainmakers -n Doomsville, for example, reports author only which
18# is incomplete and stops the search so I need to move it last.
19# Simply comment this if you prefer the above 120 from CU LRC
20# -twitham, 2024/01
21info['priority'] = '500'
22
23if __name__ == '__main__':
24 culrcwrap.main(__file__, info, LyricsFetcher)