News on Video Streaming and more

Check out latest news, insights, and points of view about video software development, streaming market, and others.

Teltoo

Adding Playlists

Playlist Activation This allows for added playlists to go through Teltoo's decentralized delivery Adding a new playlist To add a new playlist, select “Add other playlist” This will open the following menu: Playlist settings Name: A descriptive name to identify the name of the playlist Playlist: The URL of the playlist (m3u8 or mpd manifest file) of your HLS/DASH stream that will go through Teltoo : Switch button to easily enable/disable monitoring and delivery of video/audio segments through Teltoo If the playlist is disabled, Teltoo will be deactivated...

More
Teltoo

Integration with AVPlayer (IOS)

This article provides a general description of the steps to follow to integrate Teltoo with AVPlayer, used in iOS devices  The integration can be done with both Objective-C and Swift Disable App Transport Security for local Networking This step is required with both Objective-C and Swift In the Project Navigator, right-click on "Infoplist", and "Open as" → "Source Code" Add the following lines: <key>NSAppTransportSecurity</key> <dict> <key>NSAllowsLocalNetworking</key> <true/> </dict> Integrating with Objective-C Import...

More
Teltoo

Integration with Exoplayer (Android)

The Teltoo ExoPlayer library provides a way to create instances of MediaSource which can be directly used to call the prepare method of the ExoPlayer classes So to activate Teltoo, use the TeltooFactory class to create MediaSource instances instead of HlsMediaSource, DashMediaSource or SsMediaSource Teltoo Exoplayer library runs on the same process the application does There are no other system processes launched by Teltoo SDK Therefore, Teltoo will remain active, connected and seeding content as long as the player is playing the video stream In other words, Teltoo...

More
Teltoo

Integration with Ooyala

Before you begin Teltoo integration, please notice that the Ooyala player requires a license key To do this, you’ll need to create an Ooyala account on their website Note that they offer a free trial To integrate Teltoo with the Ooyala player, you first need to include the Ooyala player script from the recommended location Then, include Teltoo Ooyala scripts from the Provided TS_HOST Finally, configure the player with your license key and your source stream <!-- Include Ooyala Player files --> <link rel="shortcut icon" href="//wwwooyalacom/sites/ooyalacom/files/faviconpng"...

More