diff --git a/components/video-player/Controls.tsx b/components/video-player/Controls.tsx index f0a5b370..087b4ae2 100644 --- a/components/video-player/Controls.tsx +++ b/components/video-player/Controls.tsx @@ -434,58 +434,6 @@ export const Controls: React.FC = ({ height: "100%", }} > - {/* - - - Audio Tracks - - {audioTracks?.map((track, index) => ( - { - setAudioTrack && setAudioTrack(track.index); - closeModal(); - }} - className="border border-neutral-700 rounded-lg p-4 mb-2 bg-neutral-800" - > - - {track.name} {track.language ? `(${track.language})` : null} - - - ))} - - Subtitles - {allSubtitleTracks?.map((sub, index) => ( - { - if (sub.isExternal) { - setSubtitleURL && - setSubtitleURL(api?.basePath + sub.deliveryUrl, sub.name); - } else { - setSubtitleTrack && setSubtitleTrack(sub.index); - } - closeModal(); - }} - className="border border-neutral-700 rounded-lg p-4 mb-2 bg-neutral-800" - > - {sub.name} - - ))} - - */}