What is the method for preventing the QuickTime Player from capturing streaming videos of iOS 8 apps on Yosemite while screen recording is on?

devquora
devquora

Posted On: Jun 10, 2024

 

The QuickTime Player on Yosemite cannot record encrypted media by the HTTP Live Streams during screen recording. As a result, these will simply black out in the recorded video.

The HTTP Live Streaming tech (HLS) from Apple allows you to send and receive on-demand and live video and audio media on your iPad, iPhone, Apple TV, Mac and PC. HLS uses the very same properties and procedures which drive the web and thus, lets the user make use of content with the help of ordinary content delivery networks and web servers. HLS is exclusively designed for high reliability and it dynamically modifies itself to suit the network conditions. This is done by optimization of playback according to the available connection speed offered by wired or wireless devices.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    IOS Interview Questions

    How can a user respond or react to the state transitions on the app?

    Effectively manage app state transitions with delegate methods. Use applicationDidBecomeActive(), applicationDidEnterBackground(), applicationWillEnterForeground(), and applicationWillTerminate() to h..

    IOS Interview Questions

    What are extra features added in iOS 9?

    Discover Siri's advanced capabilities for seamless app access, personalized recommendations, and contextual reminders on iOS. Intelligent Search simplifies daily tasks, from finding photos to providin..

    IOS Interview Questions

    How is retain different from assign?

    In Objective-C, attribute assignment follows a pattern: "assign" for non-pointers, "retain" for pointers pointing to specific objects. This ensures proper memory management in iOS development...