We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f9e1bc commit c2b1a47Copy full SHA for c2b1a47
1 file changed
player/lua/select.lua
@@ -128,9 +128,11 @@ end
128
129
local function format_track(track)
130
local bitrate = track["demux-bitrate"] or track["hls-bitrate"]
131
+ local bidi_fsi = ""
132
+ local bidi_pdi = ""
133
134
return (track.selected and "●" or "○") ..
- (track.title and " " .. track.title or "") ..
135
+ (track.title and " " .. bidi_fsi .. track.title .. bidi_pdi or "") ..
136
" (" .. (
137
(track.lang and track.lang .. " " or "") ..
138
(track.codec and track.codec .. " " or "") ..
0 commit comments