MythTV
master
mythtv
programs
scripts
metadata
Music
lyrics
music163.py
Go to the documentation of this file.
1
# -*- Mode: python; coding: utf-8; indent-tabs-mode: nil; -*-
2
3
from
common
import
culrcwrap
4
from
lib.culrcscrapers.music163.lyricsScraper
import
LyricsFetcher
5
# make sure this-------^^^^^^^^^ matches this file's basename
6
7
info = {
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
21
info[
'priority'
] =
'500'
22
23
if
__name__ ==
'__main__'
:
24
culrcwrap.main(__file__, info, LyricsFetcher)
Generated on Tue Feb 18 2025 03:17:20 for MythTV by
1.8.17