예제 #1
0
파일: wsgi.py 프로젝트: irvingwa/kodi-alexa
def alexa_player_zoom_reset(slots):
    print('Player zoom normal')
    sys.stdout.flush()

    kodi.PlayerZoom(1)
    answer = ""
    return build_alexa_response(answer)
예제 #2
0
def alexa_player_zoom_reset(slots):
    card_title = 'Player zoom normal'
    print card_title
    sys.stdout.flush()

    kodi.PlayerZoom(1)
    answer = ""
    return build_alexa_response(answer, card_title)