Skip to content

Instantly share code, notes, and snippets.

@davidblewett
Created November 6, 2013 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidblewett/7340385 to your computer and use it in GitHub Desktop.
Save davidblewett/7340385 to your computer and use it in GitHub Desktop.
Example using streaming FLAC
from coxswain.flac import StreamingFlacAudio
from audiotools.player import Player
from audiotools.player import available_outputs
player = Player([i for i in available_outputs()][0])
flac = StreamingFlacAudio('http://path/to/my.flac')
player.open(flac)
player.play()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment