2 Achegas c08ca3b346 ... aa27e1a035

Autor SHA1 Mensaxe Data
  chaosmonk aa27e1a035 restructure %!s(int64=5) %!d(string=hai) anos
  chaosmonk 79226a1aec restructure %!s(int64=5) %!d(string=hai) anos

channels.py → libricia-music/channels.py


libricia-music.glade → libricia-music/data/libricia-music.glade


library.py → libricia-music/library.py


+ 1 - 1
libricia-music

@@ -33,7 +33,7 @@ import search
 class App:
     def __init__(self):
         self.builder = Gtk.Builder()
-        self.builder.add_from_file("libricia-music.glade")
+        self.builder.add_from_file("data/libricia-music.glade")
         self.builder.connect_signals(self)
 
         self.window = self.builder.get_object("window")

+ 40 - 0
libricia-music/misc.py

@@ -0,0 +1,40 @@
+#    Copyright (C) 2019 Mason Hock <mason@masonhock.com>
+#
+#    This program is free software; you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation; either version 3 of the License, or
+#    (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program; if not, write to the Free Software
+#    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+#
+
+
+def seconds_to_timestamp(durations):
+    show_hours = False
+    for duration in durations:
+        if duration // 3600 > 0:
+            show_hours = True
+            break
+
+    def pad(n):
+        if len(str(n)) == 1:
+            return '0' + str(n)
+        else:
+            return str(n)
+
+    for i, duration in enumerate(durations):
+        duration = int(duration)
+        if show_hours:
+            durations[i] = ':'.join(
+                [str(duration // 3600), pad(duration // 60), pad(duration % 60)])
+        else:
+            durations[i] = ':'.join([str(duration // 60), pad(duration % 60)])
+
+    return durations

playback.py → libricia-music/playback.py


+ 70 - 0
libricia-music/search.py

@@ -0,0 +1,70 @@
+#    Copyright (C) 2019 Mason Hock <mason@masonhock.com>
+#
+#    This program is free software; you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation; either version 3 of the License, or
+#    (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program; if not, write to the Free Software
+#    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+#
+
+import requests
+
+import musicbrainzngs
+musicbrainzngs.set_useragent('Libricia', '0.x')
+
+JAMENDO_BASE_URL = 'https://api.jamendo.com/v3.0/tracks/?'
+
+JAMENDO_OPTIONS = [
+    ('client_id', '8e4fe531'),
+    ('format', 'jsonpretty'),
+    ('ccnc', '0'),
+    ('ccnd', '0'),
+]
+
+
+class Search:
+    def __init__(self):
+        self.results = []
+
+    def search_artists(self, query):
+        if len(query) > 2:
+            self.results = [result for result in musicbrainzngs.search_artists(
+                artist=query, type="group", limit=4)['artist-list']]
+        else:
+            self.results = []
+
+
+class Channelp():
+    def __init__(self, artist):
+        self.tags = artist.get_tags(0)
+        self.pool = set()
+        self.get_tracks_similar_to_artist(artist, 25)
+        self.playlist = []
+
+    def get_tracks_similar_to_artist(self, artist, num_results):
+        by_xartist = JAMENDO_OPTIONS + [
+            ('limit', str(num_results)),
+            ('xartist', artist.data['name']),
+        ]
+
+        by_tags = JAMENDO_OPTIONS + [
+            ('limit', str(num_results)),
+            ('fuzzytags', '+'.join(artist.get_tags(0))),
+        ]
+
+        search_results = (requests.get(JAMENDO_BASE_URL + '&'.join(['='.join(option) for option in by_xartist])).json()[
+                          'results'] + requests.get(JAMENDO_BASE_URL + '&'.join(['='.join(option) for option in by_tags])).json()['results'])
+
+        for result in search_results:
+            self.pool.add(playback.Track.new_from_jamendo_data(result))
+
+    def get_track(self):
+        return random.sample(self.pool, 1)[0]

settings.py → libricia-music/settings.py