Example #1
0
def main():
    """ The function where it all starts...."""
    init_gettext('pi-jukebox', 'locale')
    pygame.display.set_caption("Pi Jukebox")
    apply_settings()  # Check for first time settings and applies settings

    # Check whether mpd is running and get it's status
    if not mpd.connect():
        screen_message = ScreenMessage(
            SCREEN,
            "Couldn't connect to the mpd server!",
            _("Couldn't connect to the mpd server {0} on port {1:d}! ".format(mpd.host, mpd.port)) +
            _("Check settings in file pi-jukebox.conf or check if server is running: 'sudo service mpd status'."),
            'error')
        screen_message.show()
        sys.exit()

    mpd.status_get()  # Get mpd status
    screens = PiJukeboxScreens()  # Screens
    screens.show()  # Display the screen

    while 1:
        # Check whether mpd's status changed
        pygame.time.wait(PYGAME_EVENT_DELAY)
        if mpd.status_get():
            screens.mpd_updates()  # If so update relevant screens

        for event in pygame.event.get():  # Do for all events in pygame's event queue
            screens.process_mouse_event(event)  # Handle mouse related events
            if event.type == KEYDOWN and event.key == K_ESCAPE:
                mpd.disconnect()
                sys.exit()

    time.sleep(0.2)
    pygame.display.update()
Example #2
0
def apply_settings():
    # Check for first time settings
    if not config_file.setting_exists('MPD Settings', 'music directory'):
        screen_message = ScreenMessage(
            SCREEN, 
            _("No music directory"),
            _("If you want to display cover art, Pi-Jukebox needs to know which directory your music collection is in. "
	      "The location can also be found in your mpd.conf entry 'music directory'."),
            'warning')
        screen_message.show()
        settings_mpd_screen = ScreenSettingsMPD(SCREEN)
        settings_mpd_screen.keyboard_setting(_("Set music directory"), 'MPD Settings', 'music directory',
                                             '/var/lib/mpd/music/')
    mpd.host = config_file.setting_get('MPD Settings', 'host')
    mpd.port = int(config_file.setting_get('MPD Settings', 'port'))
    mpd.music_directory_set(config_file.setting_get('MPD Settings', 'music directory'))
    if not config_file.section_exists('Radio stations'):
        config_file.setting_set('Radio stations', "Radio Swiss Jazz", "http://stream.srg-ssr.ch/m/rsj/mp3_128")
Example #3
0
def apply_settings():
    # Check for first time settings
    if not config_file.setting_exists('MPD Settings', 'music directory'):
        screen_message = ScreenMessage(
            SCREEN, _("No music directory"),
            _("If you want to display cover art, Pi-Jukebox needs to "
              "know which directory your music collection is in. "
              "The location can also be found in your mpd.conf entry "
              "'music directory'."), 'warning')
        screen_message.show()
        settings_mpd_screen = ScreenSettingsMPD(SCREEN)
        settings_mpd_screen.keyboard_setting(_("Set music directory"),
                                             'MPD Settings', 'music directory',
                                             '/var/lib/mpd/music/')
    mpd.host = config_file.setting_get('MPD Settings', 'host')
    mpd.port = int(config_file.setting_get('MPD Settings', 'port'))
    mpd.music_directory_set(
        config_file.setting_get('MPD Settings', 'music directory'))
    if not config_file.section_exists('Radio stations'):
        config_file.setting_set('Radio stations', "Radio Swiss Jazz",
                                "http://stream.srg-ssr.ch/m/rsj/mp3_128")
Example #4
0
def main():
    """ The function where it all starts...."""
    init_gettext('pi-jukebox', 'locale')
    pygame.display.set_caption("Pi Jukebox")
    apply_settings()  # Check for first time settings and applies settings

    # Check whether mpd is running and get it's status
    if not mpd.connect():
        screen_message = ScreenMessage(
            SCREEN, _("Couldn't connect to the mpd server!"),
            _("Couldn't connect to the mpd server {0} on port {1:d}!".format(
                mpd.host, mpd.port)) +
            _("Check settings in file pi-jukebox.conf or check is server is running 'sudo service mpd status'."
              ), 'error')
        screen_message.show()
        sys.exit()

    mpd.status_get()  # Get mpd status
    screens = PiJukeboxScreens()  # Screens
    screens.show()  # Display the screen

    while 1:
        # Check whether mpd's status changed
        pygame.time.wait(PYGAME_EVENT_DELAY)
        if mpd.status_get():
            screens.mpd_updates()  # If so update relevant screens

        for event in pygame.event.get(
        ):  # Do for all events in pygame's event queue
            screens.process_mouse_event(event)  # Handle mouse related events
            if event.type == KEYDOWN and event.key == K_ESCAPE:
                mpd.disconnect()
                sys.exit()

    time.sleep(0.2)
    pygame.display.update()