You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Get a playable audio file with Range headers support
101
125
102
-
Returns a playable audio file that corresponds to the given filepath. Falls back to track hash if filepath is not found.
126
+
# Returns a playable audio file that corresponds to the given filepath. Falls back to track hash if filepath is not found.
103
127
104
-
Transcoding can be done by sending the quality and container query parameters.
128
+
# Transcoding can be done by sending the quality and container query parameters.
105
129
106
-
**NOTES:**
107
-
- Transcoded streams report incorrect duration during playback (idk why! FFMPEG gurus we need your help here).
108
-
- The quality parameter is the desired bitrate in kbps.
109
-
- The mp3 container is the best container for upto 320kbps (and has better duration reporting). The flac container allows for higher bitrates but it produces dramatically larger files (when transcoding from lossy formats).
110
-
- You can get the transcoded bitrate by checking the X-Transcoded-Bitrate header on the first request's response.
111
-
"""
112
-
trackhash=path.trackhash
113
-
filepath=query.filepath
130
+
# **NOTES:**
131
+
# - Transcoded streams report incorrect duration during playback (idk why! FFMPEG gurus we need your help here).
132
+
# - The quality parameter is the desired bitrate in kbps.
133
+
# - The mp3 container is the best container for upto 320kbps (and has better duration reporting). The flac container allows for higher bitrates but it produces dramatically larger files (when transcoding from lossy formats).
134
+
# - You can get the transcoded bitrate by checking the X-Transcoded-Bitrate header on the first request's response.
0 commit comments