I'm using Azure Media Services to encode adaptive videos that need to be seen in web (I'm using Smooth Streaming for this) and in both iOS and Android (and I'm using HLS for both). In the Azure documentation are presets for encoding to Smooth Streaming in 1080p and there's also documentation for remuxing the SS files to HLS. So far, so good.
The problem is that when I convert the 1080p Smooth Streaming to HLS, the result is not playable in Android. I've searched about it and it seems that the problem is that the Media Services preset encodes the video using h264 high profile and Android doesn't support that profile.
I've fixed this problem encoding to two different Smooth Streaming presets: "H264 Smooth Streaming 1080p" and "H264 Smooth Streaming 720p" (because the latter encodes to h264 main profile), and then using the 720p files to generate the HLS video. This is not optimal because I'm encoding one more time that needed and I'm not using the 720p smooth streaming files.
So... Is there a way that I can skip the 720p Smooth Streaming encoding? Maybe encoding to Smooth Streaming in 1080p but with main profile?
Encoding videos for web and mobile using Azure Media Services
482 views Asked by Cool Acid At
1
There are 1 answers
Related Questions in AZURE
- How to update to the latest external Git in Azure Web App?
- I need an azure product that executes my intensive ffmpeg command then dies, and i only get charged for the delta. Any Tips?
- Inject AsyncCollector into a service
- mutual tls authentication between app service and function app
- Azure Application Insights Not Displaying Custom Logs for Azure Functions with .NET 8
- Application settings for production deployment slot in Azure App Services
- Encountered an error (ServiceUnavailable) from host runtime on Azure Function App
- Implementing Incremental consent when using both application and delegated permissions
- Invalid format for email address in WordPress on Azure app service
- Producer Batching Service Bus Vs Kafka
- Integrating Angular External IP with ClusterIP of .NET microservices on AKS
- Difficulty creating a data pipeline with Fabric Datafactory using REST
- Azure Batch for Excel VBA
- How to authenticate only Local and Guest users in Azure AD B2C and add custom claims in token?
- Azure Scale Sets and Parallel Jobs
Related Questions in H.264
- Android mediacodec avc/h264 encoder always produces 1MB output buffer size
- Video Emulation solution
- Exoplayer does not play h264 mpeg-4 avc (part 10) codec in Android
- Client side H.264 (MP4) video compression/encoding
- Gstreamer Serial communication between 2 devices
- Decode h264 frame using android hardware accelerated decoder in gstreamer
- FFMPEG C Library: Encoding h264 stream into Matroska .mkv container creates corrupt files
- Adding h264 frames to mp4 file
- H264 data changing after serial communication in Python
- Extend Frame Size and Re-Encoding Video to be Blu-Ray Compliant with ffmpeg and tsMuxer
- Is there min size of IMFSample when ProcessInput?
- RTSP server on live555 start send client on I-Frame (h264)
- Python Handling H264 Frames for Live Stream from Eufy Server
- MediaCodec Async mode with NDK not triggering callback functions
- GstAppSink: Sharing between two pipelines
Related Questions in SMOOTH-STREAMING
- How to request a single ISM smooth stream fragment and parse a single video frame?
- Concatenating Smooth Streaming output to a single MP4 file - problems with A/V sync. What is CodecPrivateData?
- Microsoft Smooth Streaming declares timescale of 10M by default
- Failed to resolve: com.google.android.exoplayer:exoplayer-smoothstreaming:2.6.1
- Load Testing video streaming HLS/MPEG-DASH/Smooth : What metrics do I need?
- Windows 10 UWP Smooth Streaming Video set the heuristic profile
- Splitting mp4 files vs mp4-dash
- UWP Windows 10 app - Smooth Streaming support
- Azure Media Services freezes on Android
- Playready encrypted test SMOOTH content with a license URL and token
- ExoPlayer: "Internal runtime error" on certain PlayReady-protected assets
- Download ism video for offline playback
- Programmatically configure application pools to support smooth streaming publishing points?
- Live Smooth Streaming in IIS from webcam using FFMPEG
- Smooth streaming - How does silverlight choose default language track in multi audio manifest
Related Questions in AZURE-MEDIA-SERVICES
- Media Service API failed - 400 bad request - Creation of new Media Service accounts are not allowed as the resource has been deprecated
- Azure Blob Storage StartCopyFromUriAsync() Causes Zero Byte Files to be Copied
- Get Input Asset or Output Asset from JobId or SmoothStreamingUrl - Azure Media Services
- How to use Gstreamer to ingress live stream on Azure Media Services using RTMP in a long run?
- Azure Media Player controls missing css classes
- azure media player show question mark in the closed caption while the vtt file doesn't have it
- I want to setup a DRM based video stream with both widevine and play ready
- Azure Media Services : Streaming Assets from Private Storage Account
- How to upload video to azure media service using REST api?
- Azure Media Services V3 audio analyzer transcript timestamp incorrect
- ultra low latency live video cam streaming using azure
- Azure Media Services Stream not displaying in Blazor App using Azure Media Player
- subtitles are not showing in videojs
- Error when executing a sample code for Azure Media Service v3
- is it possible that directly uploading local video files on azure media services?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Yes, you can encode to 1080p Smooth Streaming in Main Profile as follows:
The XMLs for all the presets are available via Getting Started Sample code (http://go.microsoft.com/fwlink/?linkid=253275), in the "WAMEPresetFiles" subfolder.
Open the "H264 Smooth Streaming 1080p.xml" file in a text/XML editor, and replace HighH264VideoProfile with MainH264VideoProfile. Save it, perhaps as "H264 Main Profile 1080p Smooth Streaming.xml"
Follow the steps in http://msdn.microsoft.com/en-us/library/windowsazure/dn296426.aspx that show how you can use File.ReadAllText() to load the contents of the above XML file to a string, and then use that string in an encode Task sent to Azure Media Encoder