Streaming API¶
The streaming module provides audio playback capabilities (placeholder).
MusicPlayer¶
qfzz.streaming.player.MusicPlayer
¶
Music player for streaming playback.
Manages a local streaming server and playlist state.
Source code in qfzz/streaming/player.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 | |
__del__()
¶
Cleanup on deletion.
Source code in qfzz/streaming/player.py
76 77 78 79 | |
__init__(content_dir='./audio_content', port=8000)
¶
Initialize music player.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
content_dir
|
str
|
Directory to serve audio from |
'./audio_content'
|
port
|
int
|
Streaming port |
8000
|
Source code in qfzz/streaming/player.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | |
add_track(track)
¶
Add a single track to the playlist.
Source code in qfzz/streaming/player.py
103 104 105 106 107 108 109 110 111 112 113 114 115 116 | |
get_current_track()
¶
Get currently playing track.
Source code in qfzz/streaming/player.py
278 279 280 | |
get_playback_history(limit=10)
¶
Get playback history.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
limit
|
int
|
Maximum number of events to return |
10
|
Returns:
| Type | Description |
|---|---|
list[dict[str, Any]]
|
List of playback events |
Source code in qfzz/streaming/player.py
308 309 310 311 312 313 314 315 316 317 318 | |
get_playlist()
¶
Get current playlist.
Source code in qfzz/streaming/player.py
290 291 292 | |
get_playlist_info()
¶
Get playlist information.
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
Dictionary of playlist info |
Source code in qfzz/streaming/player.py
294 295 296 297 298 299 300 301 302 303 304 305 306 | |
get_position()
¶
Get current playback position in seconds.
Source code in qfzz/streaming/player.py
282 283 284 | |
get_state()
¶
Get current player state.
Source code in qfzz/streaming/player.py
274 275 276 | |
get_stream_url(filename)
¶
Get the streaming URL for a file.
Source code in qfzz/streaming/player.py
72 73 74 | |
get_volume()
¶
Get current volume level.
Source code in qfzz/streaming/player.py
286 287 288 | |
is_paused()
¶
Check if currently paused.
Source code in qfzz/streaming/player.py
348 349 350 | |
is_playing()
¶
Check if currently playing.
Source code in qfzz/streaming/player.py
344 345 346 | |
is_stopped()
¶
Check if stopped.
Source code in qfzz/streaming/player.py
352 353 354 | |
load_playlist(tracks)
¶
Load a playlist.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tracks
|
list[dict[str, Any]]
|
List of track dictionaries |
required |
Source code in qfzz/streaming/player.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | |
next_track()
¶
Skip to next track.
Returns:
| Type | Description |
|---|---|
bool
|
True if skipped, False if at end of playlist |
Source code in qfzz/streaming/player.py
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | |
pause()
¶
Pause playback.
Returns:
| Type | Description |
|---|---|
bool
|
True if paused, False if not playing |
Source code in qfzz/streaming/player.py
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | |
play(track_index=None)
¶
Start playback.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
track_index
|
Optional[int]
|
Optional track index to play (default: next track) |
None
|
Returns:
| Type | Description |
|---|---|
bool
|
True if playback started, False otherwise |
Source code in qfzz/streaming/player.py
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | |
previous_track()
¶
Go to previous track.
Returns:
| Type | Description |
|---|---|
bool
|
True if successful, False otherwise |
Source code in qfzz/streaming/player.py
219 220 221 222 223 224 225 226 227 228 229 230 | |
resume()
¶
Resume playback.
Returns:
| Type | Description |
|---|---|
bool
|
True if resumed, False if not paused |
Source code in qfzz/streaming/player.py
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | |
seek(position_seconds)
¶
Seek to position in current track.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
position_seconds
|
int
|
Position in seconds |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if successful, False otherwise |
Source code in qfzz/streaming/player.py
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | |
set_dj_message(message)
¶
Update DJ message on server.
Source code in qfzz/streaming/player.py
118 119 120 | |
set_ledger_stats(stats)
¶
Update ledger stats on server.
Source code in qfzz/streaming/player.py
122 123 124 | |
set_volume(volume)
¶
Set playback volume.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
volume
|
float
|
Volume level (0.0-1.0) |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if successful, False otherwise |
Source code in qfzz/streaming/player.py
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | |
stop()
¶
Stop playback.
Source code in qfzz/streaming/player.py
193 194 195 196 197 198 199 200 201 | |
Future Implementation¶
The current implementation is a placeholder. Future versions will include:
- WebRTC Streaming: Real-time peer-to-peer audio streaming
- HLS/DASH Support: Adaptive bitrate streaming protocols
- DRM Integration: Digital rights management
- P2P Distribution: Distributed content delivery
- Buffer Management: Smart buffering strategies
- Format Support: Multiple audio formats (MP3, OGG, FLAC, etc.)
Usage Example¶
from qfzz import MusicPlayer
# Create player
player = MusicPlayer()
# Play track
player.play_track("track_001")
# Pause
player.pause()
# Resume
player.resume()
# Stop
player.stop()
Planned API¶
Future versions will support:
# Advanced playback controls
player.seek(position_seconds)
player.set_volume(0.8)
player.set_playback_rate(1.0)
# Queue management
player.enqueue("track_002")
player.clear_queue()
# Events
@player.on('play')
def on_play(track_id):
print(f"Playing: {track_id}")
@player.on('ended')
def on_ended(track_id):
print(f"Ended: {track_id}")