Audio TracksThe player supports two options for selecting audio tracks
HLS and DASHThe list of audio tracks for HLS and DASH is automatically generated, if the manifest has a choice, the audio player will display the track names in the options menu. In some cases, the sound and the image may be out of sync. Switching sourcesThe source list is passed to the player by the file parameter, the names are enclosed in curly braces, and the options are separated by a symbol ; {audiotrack}URL1;{audiotrack}URL2;{audiotrack}URL3 Sample new Playerjs({ "id":"player", "file":"{French}//site.com/video_fr.mp4;{English}//site.com/video_en.mp4" }); If you need to specify the quality options and audio tracks together, then the quality must be outside new Playerjs({ "id":"player", "file":"[480p]{French}//site.com/video480_fr.mp4;{English}//site.com/video480_en.mp4,[720p]{French}//site.com/video720_fr.mp4;{English}//site.com/video720_en.mp4" }); Audio track by defaultThe default_audio parameter allows you to enable the desired audio track by specifying its name. var player = new Playerjs({ "id":"player", "file":"//site.com/video.m3u8", "default_audio":"French" }); Remembering the choiceWith PRO you can turn on the RenamingYou can rename audio tracks for HLS or DASH with the rename_audio parameter (works from 13.15). rename_audio:{"es1":"Spanish","track2":"English"} Since version 17.8, you can use the track sequence number starting from 0 rename_audio:{0:"Spanish", 1:"Japan", 2:"English"} |