ExoPlayer, कई कंटेनर फ़ॉर्मैट के साथ एचएलएस के साथ काम करता है. इसमें शामिल ऑडियो और वीडियो सैंपल फ़ॉर्मैट भी काम करने चाहिए. ज़्यादा जानकारी के लिए, सैंपल फ़ॉर्मैट सेक्शन देखें. हमारा सुझाव है कि एचएलएस कॉन्टेंट बनाने वाले क्रिएटर्स, इस ब्लॉग पोस्ट में बताए गए तरीके से अच्छी क्वालिटी की एचएलएस स्ट्रीम जनरेट करें.
सुविधा | इनकी अनुमति है | टिप्पणियां |
---|---|---|
कंटेनर | ||
MPEG-TS | हां | |
FMP4/CMAF | हां | |
ADTS (AAC) | हां | |
MP3 | हां | |
सबटाइटल / कैप्शन | ||
CEA-608 | हां | |
CEA-708 | हां | |
WebVTT | हां | |
मेटाडेटा | ||
ID3 | हां | |
SCTE-35 | नहीं | |
कॉन्टेंट की सुरक्षा | ||
AES-128 | हां | |
AES-128 का सैंपल | नहीं | |
वाइडवाइन | हां | एपीआई 19+ ("cenc" स्कीम) और 25+ ("cbcs" स्कीम) |
PlayReady SL2000 | हां | सिर्फ़ Android TV के लिए |
सर्वर कंट्रोल | ||
डेल्टा अपडेट | हां | |
प्लेलिस्ट को फिर से लोड होने से रोकना | हां | |
पेज को पहले से लोड करने के सुझावों को लोड होने से रोकना | हां | जिन बाइट रेंज की लंबाई तय नहीं है |
विज्ञापन इंसर्शन | ||
सर्वर से निर्देशित विज्ञापन इंसर्शन (इंटरस्टीशियल) | कुछ हद तक | सिर्फ़ X-ASSET-URI वाला वीओडी.
लाइव स्ट्रीम और
X-ASSET-LIST को बाद में जोड़ा जाएगा. |
IMA सर्वर-साइड और क्लाइंट-साइड विज्ञापन | हां | विज्ञापन इंसर्शन की गाइड |
लाइव वीडियो चलाना | ||
लाइव स्ट्रीम को सामान्य तरीके से चलाना | हां | |
लो-लेटेंसी एचएलएस (Apple) | हां | |
कम इंतज़ार वाला एचएलएस (कम्यूनिटी) | नहीं | |
Common Media Client Data CMCD | हां | CMCD इंटिग्रेशन गाइड |
MediaItem का इस्तेमाल करना
एचएलएस स्ट्रीम चलाने के लिए, आपको एचएलएस मॉड्यूल का इस्तेमाल करना होगा.
Kotlin
implementation("androidx.media3:media3-exoplayer-hls:1.6.0")
Groovy
implementation "androidx.media3:media3-exoplayer-hls:1.6.0"
इसके बाद, HLS प्लेलिस्ट के यूआरआई के लिए MediaItem
बनाया जा सकता है और उसे प्लेयर को पास किया जा सकता है.
Kotlin
// Create a player instance.
val player = ExoPlayer.Builder(context).build()
// Set the media item to be played.
player.setMediaItem(MediaItem.fromUri(hlsUri))
// Prepare the player.
player.prepare()
Java
// Create a player instance.
ExoPlayer player = new ExoPlayer.Builder(context).build();
// Set the media item to be played.
player.setMediaItem(MediaItem.fromUri(hlsUri));
// Prepare the player.
player.prepare();
अगर आपका यूआरआई .m3u8
पर खत्म नहीं होता है, तो कॉन्टेंट के टाइप के बारे में साफ़ तौर पर बताने के लिए, MediaItem.Builder
के setMimeType
में MimeTypes.APPLICATION_M3U8
को पास किया जा सकता है.
मीडिया आइटम का यूआरआई, मीडिया प्लेलिस्ट या मल्टीवैरिएंट प्लेलिस्ट पर ले जा सकता है. अगर यूआरआई, एक से ज़्यादा वैरिएंट वाली प्लेलिस्ट पर ले जाता है, जिसमें एक से ज़्यादा #EXT-X-STREAM-INF
टैग मौजूद हैं, तो ExoPlayer उपलब्ध बैंडविड्थ और डिवाइस की क्षमताओं को ध्यान में रखते हुए, वैरिएंट के बीच अपने-आप अडजस्ट हो जाएगा.
HlsMediaSource का इस्तेमाल करना
पसंद के मुताबिक बनाने के ज़्यादा विकल्पों के लिए, HlsMediaSource
बनाएं और उसे MediaItem
के बजाय सीधे प्लेयर को पास करें.
Kotlin
// Create a data source factory.
val dataSourceFactory: DataSource.Factory = DefaultHttpDataSource.Factory()
// Create a HLS media source pointing to a playlist uri.
val hlsMediaSource =
HlsMediaSource.Factory(dataSourceFactory).createMediaSource(MediaItem.fromUri(hlsUri))
// Create a player instance.
val player = ExoPlayer.Builder(context).build()
// Set the HLS media source as the playlist with a single media item.
player.setMediaSource(hlsMediaSource)
// Prepare the player.
player.prepare()
Java
// Create a data source factory.
DataSource.Factory dataSourceFactory = new DefaultHttpDataSource.Factory();
// Create a HLS media source pointing to a playlist uri.
HlsMediaSource hlsMediaSource =
new HlsMediaSource.Factory(dataSourceFactory).createMediaSource(MediaItem.fromUri(hlsUri));
// Create a player instance.
ExoPlayer player = new ExoPlayer.Builder(context).build();
// Set the HLS media source as the playlist with a single media item.
player.setMediaSource(hlsMediaSource);
// Prepare the player.
player.prepare();
मेनिफ़ेस्ट ऐक्सेस करना
Player.getCurrentManifest
को कॉल करके, मौजूदा मेनिफ़ेस्ट को वापस पाया जा सकता है.
HLS के लिए, आपको दिखाए गए ऑब्जेक्ट को HlsManifest
में कास्ट करना चाहिए. जब भी मेनिफ़ेस्ट लोड होता है, तब Player.Listener
के onTimelineChanged
कॉलबैक को भी कॉल किया जाता है. मांग पर उपलब्ध कॉन्टेंट के लिए ऐसा एक बार होगा और लाइव कॉन्टेंट के लिए कई बार. नीचे दिया गया कोड स्निपेट दिखाता है कि जब भी मेनिफ़ेस्ट लोड होता है, तो ऐप्लिकेशन कुछ कैसे कर सकता है.
Kotlin
player.addListener(
object : Player.Listener {
override fun onTimelineChanged(timeline: Timeline, @TimelineChangeReason reason: Int) {
val manifest = player.currentManifest
if (manifest is HlsManifest) {
// Do something with the manifest.
}
}
}
)
Java
player.addListener(
new Player.Listener() {
@Override
public void onTimelineChanged(
Timeline timeline, @Player.TimelineChangeReason int reason) {
Object manifest = player.getCurrentManifest();
if (manifest != null) {
HlsManifest hlsManifest = (HlsManifest) manifest;
// Do something with the manifest.
}
}
});
इंटरस्टीशियल के साथ एचएलएस स्ट्रीम चलाना
एचएलएस स्पेसिफ़िकेशन में एचएलएस इंटरस्टीशियल के बारे में बताया गया है. इनका इस्तेमाल, मीडिया प्लेलिस्ट में इंटरस्टीशियल की जानकारी शामिल करने के लिए किया जा सकता है. ExoPlayer, डिफ़ॉल्ट रूप से इन इंटरस्टीशियल को अनदेखा करता है. HlsInterstitialsAdsLoader
का इस्तेमाल करके, सहायता जोड़ी जा सकती है. हम शुरू से ही, स्पेसिफ़िकेशन की सभी सुविधाओं का इस्तेमाल नहीं करते. अगर आपको अपनी स्ट्रीम के लिए सहायता नहीं मिलती है, तो GitHub पर समस्या दर्ज करके हमें बताएं. साथ ही, हमें अपनी स्ट्रीम का यूआरआई भेजें, ताकि हम आपकी स्ट्रीम के लिए सहायता जोड़ सकें.
प्लेलिस्ट एपीआई के साथ MediaItem
का इस्तेमाल करना
इंटरस्टीशियल के साथ एचएलएस स्ट्रीम चलाने का सबसे आसान तरीका, HlsInterstitialsAdsLoader.AdsMediaSourceFactory
के साथ ExoPlayer इंस्टेंस बनाना है.
इससे, एचएलएस इंटरस्टीशियल चलाने के लिए, Player
इंटरफ़ेस के MediaItem
पर आधारित प्लेलिस्ट एपीआई का इस्तेमाल किया जा सकता है.
प्लेयर इंस्टेंस बनाते समय, ExoPlayer
के MediaSource.Factory
को बिल्डर में इंजेक्ट किया जा सकता है:
Kotlin
hlsInterstitialsAdsLoader = HlsInterstitialsAdsLoader(context)
// Create a MediaSource.Factory for HLS streams with interstitials.
var hlsMediaSourceFactory =
HlsInterstitialsAdsLoader.AdsMediaSourceFactory(
hlsInterstitialsAdsLoader,
playerView,
DefaultMediaSourceFactory(context),
)
// Build player with interstitials media source factory
player =
ExoPlayer.Builder(context)
.setMediaSourceFactory(hlsMediaSourceFactory)
.build()
// Set the player on the ads loader.
hlsInterstitialsAdsLoader.setPlayer(player)
playerView.setPlayer(player)
Java
hlsInterstitialsAdsLoader = new HlsInterstitialsAdsLoader(context);
// Create a MediaSource.Factory for HLS streams with interstitials.
MediaSource.Factory hlsMediaSourceFactory =
new HlsInterstitialsAdsLoader.AdsMediaSourceFactory(
hlsInterstitialsAdsLoader, playerView, new DefaultMediaSourceFactory(context));
// Build player with interstitials media source factory
player =
new ExoPlayer.Builder(context)
.setMediaSourceFactory(hlsMediaSourceFactory)
.build();
// Set the player on the ads loader.
hlsInterstitialsAdsLoader.setPlayer(player);
playerView.setPlayer(player);
इस तरह के प्लेयर सेटअप के साथ, HLS इंटरस्टीशियल चलाने के लिए, प्लेयर पर AdsConfiguration
के साथ मीडिया आइटम सेट करना ज़रूरी है:
Kotlin
player.setMediaItem(
MediaItem.Builder()
.setUri("https://www.example.com/media.m3u8")
.setAdsConfiguration(
AdsConfiguration.Builder(Uri.parse("hls://interstitials"))
.setAdsId("ad-tag-0") // must be unique within playlist
.build())
.build())
player.prepare();
player.play();
Java
player.setMediaItem(
new MediaItem.Builder()
.setUri("https://www.example.com/media.m3u8")
.setAdsConfiguration(
new AdsConfiguration.Builder(Uri.parse("hls://interstitials"))
.setAdsId("ad-tag-0") // must be unique within playlist
.build())
.build());
player.prepare();
player.play();
मीडिया सोर्स पर आधारित एपीआई का इस्तेमाल करना
इसके अलावा, डिफ़ॉल्ट मीडिया सोर्स फ़ैक्ट्री को बदले बिना भी ExoPlayer इंस्टेंस बनाया जा सकता है. इंटरस्टीशियल के साथ काम करने के लिए, कोई ऐप्लिकेशन सीधे HlsInterstitialsAdsLoader.AdsMediaSourceFactory
का इस्तेमाल करके MediaSource
बना सकता है. साथ ही, मीडिया सोर्स पर आधारित प्लेलिस्ट एपीआई का इस्तेमाल करके, इसे ExoPlayer को उपलब्ध करा सकता है:
Kotlin
hlsInterstitialsAdsLoader = HlsInterstitialsAdsLoader(context)
// Create a MediaSource.Factory for HLS streams with interstitials.
var hlsMediaSourceFactory =
HlsInterstitialsAdsLoader.AdsMediaSourceFactory(hlsInterstitialsAdsLoader, playerView, context)
// Build player with default media source factory.
player = new ExoPlayer.Builder(context).build();
// Create an media source from an HLS media item with ads configuration.
val mediaSource =
hlsMediaSourceFactory.createMediaSource(
MediaItem.Builder()
.setUri("https://www.example.com/media.m3u8")
.setAdsConfiguration(
MediaItem.AdsConfiguration.Builder(Uri.parse("hls://interstitials"))
.setAdsId("ad-tag-0")
.build()
)
.build()
)
// Set the media source on the player.
player.setMediaSource(mediaSource)
player.prepare()
player.play()
Java
HlsInterstitialsAdsLoader hlsInterstitialsAdsLoader = new HlsInterstitialsAdsLoader(context);
// Create a MediaSource.Factory for HLS streams with interstitials.
MediaSource.Factory hlsMediaSourceFactory =
new HlsInterstitialsAdsLoader.AdsMediaSourceFactory(
hlsInterstitialsAdsLoader, playerView, context);
// Build player with default media source factory.
player = new ExoPlayer.Builder(context).build();
// Create an media source from an HLS media item with ads configuration.
MediaSource mediaSource =
hlsMediaSourceFactory.createMediaSource(
new MediaItem.Builder()
.setUri("https://www.example.com/media.m3u8")
.setAdsConfiguration(
new MediaItem.AdsConfiguration.Builder(Uri.parse("hls://interstitials"))
.setAdsId("ad-tag-0")
.build())
.build());
// Set the media source on the player.
exoPlayer.setMediaSource(mediaSource);
exoPlayer.prepare();
exoPlayer.play();
विज्ञापन इवेंट सुनना
एचएलएस इंटरस्टीशियल के प्लेलबैक से जुड़ी स्थिति में हुए बदलावों के बारे में इवेंट को मॉनिटर करने के लिए, HlsInterstitialsAdsLoader
में Listener
जोड़ा जा सकता है. इससे ऐप्लिकेशन या SDK टूल को, दिखाए गए विज्ञापनों, लोड की जा रही एसेट की सूचियों, और विज्ञापन मीडिया सोर्स को तैयार करने की प्रोसेस को ट्रैक करने में मदद मिलती है. इसके अलावा, एसेट की सूची लोड होने और विज्ञापन तैयार करने से जुड़ी गड़बड़ियों का पता लगाने में भी मदद मिलती है. इसके अलावा, विज्ञापन मीडिया सोर्स से उत्सर्जित मेटाडेटा को, विज्ञापन चलाए जाने की पुष्टि करने या विज्ञापन चलाए जाने की प्रोग्रेस को ट्रैक करने के लिए, बारीकी से देखा जा सकता है.
Kotlin
class AdsLoaderListener : HlsInterstitialsAdsLoader.Listener {
override fun onStart(mediaItem: MediaItem, adsId: Any, adViewProvider: AdViewProvider) {
// Do something when HLS media item with interstitials is started.
}
override fun onMetadata(
mediaItem: MediaItem,
adsId: Any,
adGroupIndex: Int,
adIndexInAdGroup: Int,
metadata: Metadata,
) {
// Do something with metadata that is emitted by the ad media source of the given ad.
}
override fun onAdCompleted(
mediaItem: MediaItem,
adsId: Any,
adGroupIndex: Int,
adIndexInAdGroup: Int,
) {
// Do something when ad completed playback.
}
// ... See JavaDoc for further callbacks of HlsInterstitialsAdsLoader.Listener.
override fun onStop(mediaItem: MediaItem, adsId: Any, adPlaybackState: AdPlaybackState) {
// Do something with the resulting ad playback state when stopped.
}
}
Java
private class AdsLoaderListener
implements HlsInterstitialsAdsLoader.Listener {
// implement HlsInterstitialsAdsLoader.Listener
@Override
public void onStart(MediaItem mediaItem, Object adsId, AdViewProvider adViewProvider) {
// Do something when HLS media item with interstitials is started.
}
@Override
public void onMetadata(
MediaItem mediaItem,
Object adsId,
int adGroupIndex,
int adIndexInAdGroup,
Metadata metadata) {
// Do something with metadata that is emitted by the ad media source of the given ad.
}
@Override
public void onAdCompleted(
MediaItem mediaItem, Object adsId, int adGroupIndex, int adIndexInAdGroup) {
// Do something when ad completed playback.
}
// ... See JavaDoc for further callbacks
@Override
public void onStop(MediaItem mediaItem, Object adsId, AdPlaybackState adPlaybackState) {
// Do something with the resulting ad playback state when stopped.
}
}
सभी उपलब्ध कॉलबैक के बारे में ज़्यादा जानकारी के लिए, HlsInterstitialsAdsLoader.Listener
का JavaDoc देखें.
इसके बाद, विज्ञापन लोडर में लिसनर को जोड़ा जा सकता है:
Kotlin
var listener = AdsLoaderListener();
// Add the listener to the ads loader to receive ad loader events.
hlsInterstitialsAdsLoader.addListener(listener);
Java
AdsLoaderListener listener = new AdsLoaderListener();
// Add the listener to the ads loader to receive ad loader events.
hlsInterstitialsAdsLoader.addListener(listener);
HlsInterstitialsAdsLoader
लाइफ़साइकल
HlsInterstitialsAdsLoader
या
HlsInterstitialsAdsLoader.AdsMediaSourceFactory
के किसी इंस्टेंस का इस्तेमाल, कई प्लेयर इंस्टेंस के लिए फिर से किया जा सकता है. ये इंस्टेंस, कई मीडिया सोर्स बनाते हैं जिनके लिए विज्ञापन लोड करने होते हैं.
उदाहरण के लिए, Activity
के onCreate
तरीके में एक इंस्टेंस बनाया जा सकता है और फिर कई प्लेयर इंस्टेंस के लिए उसका फिर से इस्तेमाल किया जा सकता है. यह तब तक काम करता है, जब तक एक ही प्लेयर इंस्टेंस का इस्तेमाल एक ही समय पर किया जा रहा हो. यह आम तौर पर इस्तेमाल किए जाने वाले उदाहरण के लिए फ़ायदेमंद है. जब ऐप्लिकेशन को बैकग्राउंड में ले जाया जाता है, तो प्लेयर इंस्टेंस को मिटा दिया जाता है. इसके बाद, जब ऐप्लिकेशन को फिर से फ़ोरग्राउंड में लाया जाता है, तो एक नया इंस्टेंस बनाया जाता है.
Kotlin
// Create the ads loader instance (for example onCreate).
hlsInterstitialsAdsLoader = HlsInterstitialsAdsLoader(context);
// Build a player and set it on the ads loader (for example onStart).
player = ExoPlayer.Builder(context).build();
hlsInterstitialsAdsLoader.setPlayer(player);
// Release the player and unset it on the ads loader (for example onStop).
player.release();
hlsInterstitialsAdsLoader.setPlayer(null);
// Build another player and set it on the ads loader (for example onStart).
player = ExoPlayer.Builder(context).build();
hlsInterstitialsAdsLoader.setPlayer(player);
// Release the player and unset it on the ads loader (for example onStop).
player.release();
hlsInterstitialsAdsLoader.setPlayer(null);
// Release the ads loader when not used anymore (for example onDestroy).
hlsInterstitialsAdsLoader.release();
Java
// Create the ads loader instance (for example onCreate).
hlsInterstitialsAdsLoader = new HlsInterstitialsAdsLoader(context);
// Build a player and set it on the ads loader (for example onStart).
player = new ExoPlayer.Builder(context).build();
hlsInterstitialsAdsLoader.setPlayer(player);
// Release the player and unset it on the ads loader (for example onStop).
player.release();
hlsInterstitialsAdsLoader.setPlayer(null);
// Build another player and set it on the ads loader (for example onStart).
player = new ExoPlayer.Builder(context).build();
hlsInterstitialsAdsLoader.setPlayer(player);
// Release the player and unset it on the ads loader (for example onStop).
player.release();
hlsInterstitialsAdsLoader.setPlayer(null);
// Release the ads loader when not used anymore (for example onDestroy).
hlsInterstitialsAdsLoader.release();
आम तौर पर, विज्ञापन लोडर पर अगला प्लेयर इंस्टेंस सेट करने से पहले, पुराने प्लेयर इंस्टेंस को रिलीज़ करना न भूलें. विज्ञापन लोडर रिलीज़ होने के बाद, उसका इस्तेमाल नहीं किया जा सकता.
वीडियो चलाने की सेटिंग में बदलाव करना
ExoPlayer में, वीडियो चलाने के अनुभव को अपने ऐप्लिकेशन की ज़रूरतों के हिसाब से बनाने के कई तरीके उपलब्ध हैं. उदाहरणों के लिए, पसंद के मुताबिक बनाने वाला पेज देखें.
बिना चंक वाली तैयारी की सुविधा बंद करना
डिफ़ॉल्ट रूप से, ExoPlayer बिना चंक वाले तरीके का इस्तेमाल करेगा. इसका मतलब है कि ExoPlayer, स्ट्रीम तैयार करने के लिए सिर्फ़ मल्टीवैरिएंट प्लेलिस्ट में मौजूद जानकारी का इस्तेमाल करेगा. यह तब काम करता है, जब #EXT-X-STREAM-INF
टैग में CODECS
एट्रिब्यूट मौजूद हो.
अगर आपके मीडिया सेगमेंट में, मल्टीप्लेक्स किए गए ऐसे सबटाइटल ट्रैक शामिल हैं जिन्हें #EXT-X-MEDIA:TYPE=CLOSED-CAPTIONS
टैग के साथ मल्टीवैरिएंट प्लेलिस्ट में नहीं बताया गया है, तो आपको इस सुविधा को बंद करना पड़ सकता है. ऐसा न करने पर, इन सबटाइटल ट्रैक का पता नहीं चलेगा और उन्हें चलाया भी नहीं जा सकेगा. यहां दिए गए स्निपेट में दिखाए गए तरीके से, HlsMediaSource.Factory
में चंकलेस तैयारी की सुविधा बंद की जा सकती है. ध्यान दें कि इससे वीडियो शुरू होने में लगने वाला समय बढ़ जाएगा. ऐसा इसलिए, क्योंकि ExoPlayer को इन अतिरिक्त ट्रैक को खोजने के लिए, मीडिया सेगमेंट डाउनलोड करना होगा. इसलिए, बेहतर होगा कि आप मल्टीवैरिएंट प्लेलिस्ट में सबटाइटल वाले ट्रैक का एलान करें.
Kotlin
val hlsMediaSource =
HlsMediaSource.Factory(dataSourceFactory)
.setAllowChunklessPreparation(false)
.createMediaSource(MediaItem.fromUri(hlsUri))
Java
HlsMediaSource hlsMediaSource =
new HlsMediaSource.Factory(dataSourceFactory)
.setAllowChunklessPreparation(false)
.createMediaSource(MediaItem.fromUri(hlsUri));
अच्छी क्वालिटी का एचएलएस कॉन्टेंट बनाना
ExoPlayer का ज़्यादा से ज़्यादा फ़ायदा पाने के लिए, HLS कॉन्टेंट को बेहतर बनाने के लिए कुछ दिशा-निर्देशों का पालन किया जा सकता है. पूरी जानकारी के लिए, ExoPlayer में एचएलएस प्लेबैक के बारे में Medium पर पोस्ट पढ़ें. मुख्य बातें ये हैं:
- सेगमेंट की सटीक अवधि का इस्तेमाल करें.
- लगातार चलने वाली मीडिया स्ट्रीम का इस्तेमाल करें. साथ ही, सभी सेगमेंट में मीडिया स्ट्रक्चर में बदलाव करने से बचें.
#EXT-X-INDEPENDENT-SEGMENTS
टैग का इस्तेमाल करें.- वीडियो और ऑडियो, दोनों शामिल करने वाली फ़ाइलों के बजाय, अलग-अलग ट्रैक वाली स्ट्रीम का इस्तेमाल करें.
- मल्टीवैरिएंट प्लेलिस्ट में ज़्यादा से ज़्यादा जानकारी शामिल करें.
ये दिशा-निर्देश खास तौर पर लाइव स्ट्रीम पर लागू होते हैं:
#EXT-X-PROGRAM-DATE-TIME
टैग का इस्तेमाल करें.#EXT-X-DISCONTINUITY-SEQUENCE
टैग का इस्तेमाल करें.- लाइव विंडो की अवधि लंबी हो. एक मिनट या उससे ज़्यादा समय का वीडियो अच्छा होता है.