annotate bin/ascoltami2 @ 1532:c83c423b3de0

stub for 2017 playlist Ignore-this: fab14bb1ad3e4d859a143fbbf56cf71
author drewp@bigasterisk.com
date Wed, 10 May 2017 04:09:53 +0000
parents dad28ce27590
children c962f19c7328
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
686
a301a0039c66 buildout and rdflib updates
Drew Perttula <drewp@bigasterisk.com>
parents: 674
diff changeset
1 #!bin/python
868
224d6cd7e1e4 asco use colored logs
Drew Perttula <drewp@bigasterisk.com>
parents: 793
diff changeset
2 from run_local import log
1011
78690efc866c fix ascoltami import
drewp@bigasterisk.com
parents: 938
diff changeset
3 from twisted.internet import reactor
907
cca75951554a port ascoltami to Gst 1.0, work around the missing message signals
Drew Perttula <drewp@bigasterisk.com>
parents: 868
diff changeset
4 import web, thread, sys, optparse, logging
529
1156d3531327 new ascoltami2, using gstreamer
drewp@bigasterisk.com
parents:
diff changeset
5 from rdflib import URIRef
1156d3531327 new ascoltami2, using gstreamer
drewp@bigasterisk.com
parents:
diff changeset
6 sys.path.append(".")
1026
dad28ce27590 ascoltami sys.path
Drew Perttula <drewp@bigasterisk.com>
parents: 1011
diff changeset
7 sys.path.append('/usr/lib/python2.7/dist-packages') # For gi
529
1156d3531327 new ascoltami2, using gstreamer
drewp@bigasterisk.com
parents:
diff changeset
8 from light9.ascoltami.player import Player
617
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
9 from light9.ascoltami.playlist import Playlist, NoSuchSong
788
8d87a3528369 go button support
drewp@bigasterisk.com
parents: 686
diff changeset
10 from light9.ascoltami.webapp import makeWebApp, songUri, songLocation
529
1156d3531327 new ascoltami2, using gstreamer
drewp@bigasterisk.com
parents:
diff changeset
11 from light9 import networking, showconfig
1156d3531327 new ascoltami2, using gstreamer
drewp@bigasterisk.com
parents:
diff changeset
12
907
cca75951554a port ascoltami to Gst 1.0, work around the missing message signals
Drew Perttula <drewp@bigasterisk.com>
parents: 868
diff changeset
13 import gi
cca75951554a port ascoltami to Gst 1.0, work around the missing message signals
Drew Perttula <drewp@bigasterisk.com>
parents: 868
diff changeset
14 gi.require_version('Gst', '1.0')
cca75951554a port ascoltami to Gst 1.0, work around the missing message signals
Drew Perttula <drewp@bigasterisk.com>
parents: 868
diff changeset
15 from gi.repository import GObject, Gst, Gtk
673
865532790e62 asco don't log every web request. too much "GET /time"
Drew Perttula <drewp@bigasterisk.com>
parents: 623
diff changeset
16
907
cca75951554a port ascoltami to Gst 1.0, work around the missing message signals
Drew Perttula <drewp@bigasterisk.com>
parents: 868
diff changeset
17 class App(object):
617
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
18 def __init__(self, graph, show):
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
19 self.graph = graph
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
20 self.player = Player(onEOS=self.onEOS)
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
21 self.show = show
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
22 self.playlist = Playlist.fromShow(graph, show)
529
1156d3531327 new ascoltami2, using gstreamer
drewp@bigasterisk.com
parents:
diff changeset
23
617
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
24 def onEOS(self, song):
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
25 self.player.pause()
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
26 self.player.seek(0)
529
1156d3531327 new ascoltami2, using gstreamer
drewp@bigasterisk.com
parents:
diff changeset
27
788
8d87a3528369 go button support
drewp@bigasterisk.com
parents: 686
diff changeset
28 thisSongUri = songUri(graph, URIRef(song))
8d87a3528369 go button support
drewp@bigasterisk.com
parents: 686
diff changeset
29
617
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
30 try:
788
8d87a3528369 go button support
drewp@bigasterisk.com
parents: 686
diff changeset
31 nextSong = self.playlist.nextSong(thisSongUri)
617
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
32 except NoSuchSong: # we're at the end of the playlist
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
33 return
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
34
788
8d87a3528369 go button support
drewp@bigasterisk.com
parents: 686
diff changeset
35 self.player.setSong(songLocation(graph, nextSong), play=False)
617
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
36
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
37 if __name__ == "__main__":
907
cca75951554a port ascoltami to Gst 1.0, work around the missing message signals
Drew Perttula <drewp@bigasterisk.com>
parents: 868
diff changeset
38 GObject.threads_init()
cca75951554a port ascoltami to Gst 1.0, work around the missing message signals
Drew Perttula <drewp@bigasterisk.com>
parents: 868
diff changeset
39 Gst.init(None)
529
1156d3531327 new ascoltami2, using gstreamer
drewp@bigasterisk.com
parents:
diff changeset
40
617
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
41 parser = optparse.OptionParser()
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
42 parser.add_option('--show',
623
46d319974176 move networking settings to config.n3
drewp@bigasterisk.com
parents: 621
diff changeset
43 help='show URI, like http://light9.bigasterisk.com/show/dance2008', default=showconfig.showUri())
617
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
44 parser.add_option("-v", "--verbose", action="store_true",
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
45 help="logging.DEBUG")
938
c2faa69099e6 asco: display update frequency and dim when updates stop. run slower updates on tablets and phones
drewp@bigasterisk.com
parents: 907
diff changeset
46 parser.add_option("--twistedlog", action="store_true",
c2faa69099e6 asco: display update frequency and dim when updates stop. run slower updates on tablets and phones
drewp@bigasterisk.com
parents: 907
diff changeset
47 help="twisted logging")
617
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
48 (options, args) = parser.parse_args()
529
1156d3531327 new ascoltami2, using gstreamer
drewp@bigasterisk.com
parents:
diff changeset
49
617
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
50 log.setLevel(logging.DEBUG if options.verbose else logging.INFO)
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
51
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
52 if not options.show:
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
53 raise ValueError("missing --show http://...")
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
54
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
55 graph = showconfig.getGraph()
94039df5cdd9 create Playlist class which is now used in wavecurve, musicPad, and ascoltami2.
David McClosky <dmcc@bigasterisk.com>
parents: 536
diff changeset
56 app = App(graph, URIRef(options.show))
938
c2faa69099e6 asco: display update frequency and dim when updates stop. run slower updates on tablets and phones
drewp@bigasterisk.com
parents: 907
diff changeset
57 if options.twistedlog:
c2faa69099e6 asco: display update frequency and dim when updates stop. run slower updates on tablets and phones
drewp@bigasterisk.com
parents: 907
diff changeset
58 from twisted.python import log as twlog
c2faa69099e6 asco: display update frequency and dim when updates stop. run slower updates on tablets and phones
drewp@bigasterisk.com
parents: 907
diff changeset
59 twlog.startLogging(sys.stderr)
907
cca75951554a port ascoltami to Gst 1.0, work around the missing message signals
Drew Perttula <drewp@bigasterisk.com>
parents: 868
diff changeset
60 reactor.listenTCP(networking.musicPlayer.port, makeWebApp(app))
cca75951554a port ascoltami to Gst 1.0, work around the missing message signals
Drew Perttula <drewp@bigasterisk.com>
parents: 868
diff changeset
61 log.info("listening on %s" % networking.musicPlayer.port)
cca75951554a port ascoltami to Gst 1.0, work around the missing message signals
Drew Perttula <drewp@bigasterisk.com>
parents: 868
diff changeset
62 reactor.run()