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

    kodi.PlayerZoomOut()
    answer = ""
    return build_alexa_response(answer)
예제 #2
0
def alexa_player_zoom_out(slots):
    card_title = 'Player zoom out'
    print card_title
    sys.stdout.flush()

    kodi.PlayerZoomOut()
    answer = ""
    return build_alexa_response(answer, card_title)
예제 #3
0
파일: wsgi.py 프로젝트: irvingwa/kodi-alexa
def alexa_player_zoom_out_move_down(slots):
    print('Player zoom out and move down')
    sys.stdout.flush()

    kodi.PlayerZoomOut()
    kodi.PlayerMoveDown()
    answer = ""
    return build_alexa_response(answer)