Problems reproducing video on both system (Android & iOS)Convert mp4 to maximum mobile supported MP4 using FFMPEGAVFoundation (AVPlayer) supported formats? No .vob or .mpg containers?problem with video streaming in androidProblem showing video on VideoViewandroid: video as background viewyoutube video is not playing in android webview from iframeHow to record a video Only 2 min in titaniumAndroid video View problemsWhy? I can't play downloaded mp4 video file using IntentVideo Rotates in default player in android?How to play 360 video from server URL?flutter video player displays the strange colors below the video
Generate basis elements of the Steenrod algebra
Overlapping String-Blocks
How to hide an urban landmark?
English word for "product of tinkering"
If every company in the economy earns zero economic profit, can they contribute to real economic growth?
What to do when surprise and a high initiative roll conflict with the narrative?
Has there been a multiethnic Star Trek character?
How can I get an unreasonable manager to approve time off?
How can a disk without a partition be "partitioned" without losing data?
How can I end combat quickly when the outcome is inevitable?
Is an entry level DSLR going to shoot nice portrait pictures?
Thread Pool C++ Implementation
Why we don’t make use of the t-distribution for constructing a confidence interval for a proportion?
1980s live-action movie where individually-coloured nations on clouds fight
Fermat's statement about the ancients: How serious was he?
Can I utilise a baking stone to make crepes?
What aircraft was used as Air Force One for the flight between Southampton and Shannon?
How to use memset in c++?
Is it expected that a reader will skip parts of what you write?
How to trick the reader into thinking they're following a redshirt instead of the protagonist?
sed + add word before string only if not exists
Traversing Oceania: A Cryptic Journey
Writing an augmented sixth chord on the flattened supertonic
With Ubuntu 18.04, how can I have a hot corner that locks the computer?
Problems reproducing video on both system (Android & iOS)
Convert mp4 to maximum mobile supported MP4 using FFMPEGAVFoundation (AVPlayer) supported formats? No .vob or .mpg containers?problem with video streaming in androidProblem showing video on VideoViewandroid: video as background viewyoutube video is not playing in android webview from iframeHow to record a video Only 2 min in titaniumAndroid video View problemsWhy? I can't play downloaded mp4 video file using IntentVideo Rotates in default player in android?How to play 360 video from server URL?flutter video player displays the strange colors below the video
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I'm implementing video player functionality in a Flutter app but I don't understand which is the best video format that work in both systems (IOS & Android).
I use video_player 0.10.0+2 and chewie 0.9.6.
Actually we're using H264 with container MKV and H265 with container MP4 (HEVC) but on IOS (real device) doesnt' work and in Android works but with some errors.
Some piece of code...
// Declaration
VideoPlayerController _playerController;
// Initialization
if (_playerController == null)
_playerController = VideoPlayerController.network(_myVideoUrl)
..setVolume(0.0)
..setLooping(true)
..initialize();
//Play
_playerController.play();
//Stop
if (_playerController != null)
_playerController.pause();
@override
void deactivate()
super.deactivate();
if (_playerController != null)
_playerController.pause();
@override
void dispose()
super.dispose();
if (_playerController != null)
_playerController.pause();
_playerController = null;
In IOS on real devices the video are not playing without error message.
In Android the video are playing but with these problems:
1) Log Error:
2019-03-24 15:30:49.468 1739-1817/? E/OMXNodeInstance: getExtensionIndex(0xf411c240:google.h264.decoder, OMX.google.android.index.enableAndroidNativeBuffers) ERROR: UnsupportedIndex(0x8000101a)
2019-03-24 15:30:49.468 16136-16335/it.itasoft.moc E/ACodec: [OMX.google.h264.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010
2019-03-24 15:30:49.472 1739-1817/? E/OMXNodeInstance: setConfig(0xf411c240:google.h264.decoder, ConfigPriority(0x6f800002)) ERROR: UnsupportedIndex(0x8000101a)
2019-03-24 15:30:49.473 1739-1817/? E/OMXNodeInstance: getConfig(0xf411c240:google.h264.decoder, ConfigAndroidVendorExtension(0x6f100004)) ERROR: UnsupportedIndex(0x8000101a)
2019-03-24 15:30:49.475 1739-1817/? E/OMXNodeInstance: getConfig(0xf411c240:google.h264.decoder, ??(0x7f000003)) ERROR: UnsupportedSetting(0x80001019)
2019-03-24 15:30:49.554 1739-1817/? E/OMXNodeInstance: getConfig(0xf411c240:google.h264.decoder, ??(0x7f000003)) ERROR: UnsupportedSetting(0x80001019)
2019-03-24 15:30:49.558 1739-2059/? E/OMXNodeInstance: setConfig(0xf411c720:google.aac.decoder, ConfigPriority(0x6f800002)) ERROR: Undefined(0x80001001)
2019-03-24 15:30:49.559 1739-2059/? E/OMXNodeInstance: setConfig(0xf411c720:google.aac.decoder, ConfigOperatingRate(0x6f800003)) ERROR: Undefined(0x80001001)
2019-03-24 15:30:49.559 1739-2059/? E/OMXNodeInstance: getConfig(0xf411c720:google.aac.decoder, ConfigAndroidVendorExtension(0x6f100004)) ERROR: Undefined(0x80001001)
2) Loop doesn't work
Which formats are the best for maximize compatibility on both system?
add a comment |
I'm implementing video player functionality in a Flutter app but I don't understand which is the best video format that work in both systems (IOS & Android).
I use video_player 0.10.0+2 and chewie 0.9.6.
Actually we're using H264 with container MKV and H265 with container MP4 (HEVC) but on IOS (real device) doesnt' work and in Android works but with some errors.
Some piece of code...
// Declaration
VideoPlayerController _playerController;
// Initialization
if (_playerController == null)
_playerController = VideoPlayerController.network(_myVideoUrl)
..setVolume(0.0)
..setLooping(true)
..initialize();
//Play
_playerController.play();
//Stop
if (_playerController != null)
_playerController.pause();
@override
void deactivate()
super.deactivate();
if (_playerController != null)
_playerController.pause();
@override
void dispose()
super.dispose();
if (_playerController != null)
_playerController.pause();
_playerController = null;
In IOS on real devices the video are not playing without error message.
In Android the video are playing but with these problems:
1) Log Error:
2019-03-24 15:30:49.468 1739-1817/? E/OMXNodeInstance: getExtensionIndex(0xf411c240:google.h264.decoder, OMX.google.android.index.enableAndroidNativeBuffers) ERROR: UnsupportedIndex(0x8000101a)
2019-03-24 15:30:49.468 16136-16335/it.itasoft.moc E/ACodec: [OMX.google.h264.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010
2019-03-24 15:30:49.472 1739-1817/? E/OMXNodeInstance: setConfig(0xf411c240:google.h264.decoder, ConfigPriority(0x6f800002)) ERROR: UnsupportedIndex(0x8000101a)
2019-03-24 15:30:49.473 1739-1817/? E/OMXNodeInstance: getConfig(0xf411c240:google.h264.decoder, ConfigAndroidVendorExtension(0x6f100004)) ERROR: UnsupportedIndex(0x8000101a)
2019-03-24 15:30:49.475 1739-1817/? E/OMXNodeInstance: getConfig(0xf411c240:google.h264.decoder, ??(0x7f000003)) ERROR: UnsupportedSetting(0x80001019)
2019-03-24 15:30:49.554 1739-1817/? E/OMXNodeInstance: getConfig(0xf411c240:google.h264.decoder, ??(0x7f000003)) ERROR: UnsupportedSetting(0x80001019)
2019-03-24 15:30:49.558 1739-2059/? E/OMXNodeInstance: setConfig(0xf411c720:google.aac.decoder, ConfigPriority(0x6f800002)) ERROR: Undefined(0x80001001)
2019-03-24 15:30:49.559 1739-2059/? E/OMXNodeInstance: setConfig(0xf411c720:google.aac.decoder, ConfigOperatingRate(0x6f800003)) ERROR: Undefined(0x80001001)
2019-03-24 15:30:49.559 1739-2059/? E/OMXNodeInstance: getConfig(0xf411c720:google.aac.decoder, ConfigAndroidVendorExtension(0x6f100004)) ERROR: Undefined(0x80001001)
2) Loop doesn't work
Which formats are the best for maximize compatibility on both system?
add a comment |
I'm implementing video player functionality in a Flutter app but I don't understand which is the best video format that work in both systems (IOS & Android).
I use video_player 0.10.0+2 and chewie 0.9.6.
Actually we're using H264 with container MKV and H265 with container MP4 (HEVC) but on IOS (real device) doesnt' work and in Android works but with some errors.
Some piece of code...
// Declaration
VideoPlayerController _playerController;
// Initialization
if (_playerController == null)
_playerController = VideoPlayerController.network(_myVideoUrl)
..setVolume(0.0)
..setLooping(true)
..initialize();
//Play
_playerController.play();
//Stop
if (_playerController != null)
_playerController.pause();
@override
void deactivate()
super.deactivate();
if (_playerController != null)
_playerController.pause();
@override
void dispose()
super.dispose();
if (_playerController != null)
_playerController.pause();
_playerController = null;
In IOS on real devices the video are not playing without error message.
In Android the video are playing but with these problems:
1) Log Error:
2019-03-24 15:30:49.468 1739-1817/? E/OMXNodeInstance: getExtensionIndex(0xf411c240:google.h264.decoder, OMX.google.android.index.enableAndroidNativeBuffers) ERROR: UnsupportedIndex(0x8000101a)
2019-03-24 15:30:49.468 16136-16335/it.itasoft.moc E/ACodec: [OMX.google.h264.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010
2019-03-24 15:30:49.472 1739-1817/? E/OMXNodeInstance: setConfig(0xf411c240:google.h264.decoder, ConfigPriority(0x6f800002)) ERROR: UnsupportedIndex(0x8000101a)
2019-03-24 15:30:49.473 1739-1817/? E/OMXNodeInstance: getConfig(0xf411c240:google.h264.decoder, ConfigAndroidVendorExtension(0x6f100004)) ERROR: UnsupportedIndex(0x8000101a)
2019-03-24 15:30:49.475 1739-1817/? E/OMXNodeInstance: getConfig(0xf411c240:google.h264.decoder, ??(0x7f000003)) ERROR: UnsupportedSetting(0x80001019)
2019-03-24 15:30:49.554 1739-1817/? E/OMXNodeInstance: getConfig(0xf411c240:google.h264.decoder, ??(0x7f000003)) ERROR: UnsupportedSetting(0x80001019)
2019-03-24 15:30:49.558 1739-2059/? E/OMXNodeInstance: setConfig(0xf411c720:google.aac.decoder, ConfigPriority(0x6f800002)) ERROR: Undefined(0x80001001)
2019-03-24 15:30:49.559 1739-2059/? E/OMXNodeInstance: setConfig(0xf411c720:google.aac.decoder, ConfigOperatingRate(0x6f800003)) ERROR: Undefined(0x80001001)
2019-03-24 15:30:49.559 1739-2059/? E/OMXNodeInstance: getConfig(0xf411c720:google.aac.decoder, ConfigAndroidVendorExtension(0x6f100004)) ERROR: Undefined(0x80001001)
2) Loop doesn't work
Which formats are the best for maximize compatibility on both system?
I'm implementing video player functionality in a Flutter app but I don't understand which is the best video format that work in both systems (IOS & Android).
I use video_player 0.10.0+2 and chewie 0.9.6.
Actually we're using H264 with container MKV and H265 with container MP4 (HEVC) but on IOS (real device) doesnt' work and in Android works but with some errors.
Some piece of code...
// Declaration
VideoPlayerController _playerController;
// Initialization
if (_playerController == null)
_playerController = VideoPlayerController.network(_myVideoUrl)
..setVolume(0.0)
..setLooping(true)
..initialize();
//Play
_playerController.play();
//Stop
if (_playerController != null)
_playerController.pause();
@override
void deactivate()
super.deactivate();
if (_playerController != null)
_playerController.pause();
@override
void dispose()
super.dispose();
if (_playerController != null)
_playerController.pause();
_playerController = null;
In IOS on real devices the video are not playing without error message.
In Android the video are playing but with these problems:
1) Log Error:
2019-03-24 15:30:49.468 1739-1817/? E/OMXNodeInstance: getExtensionIndex(0xf411c240:google.h264.decoder, OMX.google.android.index.enableAndroidNativeBuffers) ERROR: UnsupportedIndex(0x8000101a)
2019-03-24 15:30:49.468 16136-16335/it.itasoft.moc E/ACodec: [OMX.google.h264.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010
2019-03-24 15:30:49.472 1739-1817/? E/OMXNodeInstance: setConfig(0xf411c240:google.h264.decoder, ConfigPriority(0x6f800002)) ERROR: UnsupportedIndex(0x8000101a)
2019-03-24 15:30:49.473 1739-1817/? E/OMXNodeInstance: getConfig(0xf411c240:google.h264.decoder, ConfigAndroidVendorExtension(0x6f100004)) ERROR: UnsupportedIndex(0x8000101a)
2019-03-24 15:30:49.475 1739-1817/? E/OMXNodeInstance: getConfig(0xf411c240:google.h264.decoder, ??(0x7f000003)) ERROR: UnsupportedSetting(0x80001019)
2019-03-24 15:30:49.554 1739-1817/? E/OMXNodeInstance: getConfig(0xf411c240:google.h264.decoder, ??(0x7f000003)) ERROR: UnsupportedSetting(0x80001019)
2019-03-24 15:30:49.558 1739-2059/? E/OMXNodeInstance: setConfig(0xf411c720:google.aac.decoder, ConfigPriority(0x6f800002)) ERROR: Undefined(0x80001001)
2019-03-24 15:30:49.559 1739-2059/? E/OMXNodeInstance: setConfig(0xf411c720:google.aac.decoder, ConfigOperatingRate(0x6f800003)) ERROR: Undefined(0x80001001)
2019-03-24 15:30:49.559 1739-2059/? E/OMXNodeInstance: getConfig(0xf411c720:google.aac.decoder, ConfigAndroidVendorExtension(0x6f100004)) ERROR: Undefined(0x80001001)
2) Loop doesn't work
Which formats are the best for maximize compatibility on both system?
edited Mar 24 at 19:13
Luca Panteghini
asked Mar 24 at 18:14
Luca PanteghiniLuca Panteghini
86
86
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The supported video formats are actually quite good documented:
On iOS, the backing player is AVPlayer. The supported formats vary depending on the version of iOS, AVURLAsset class has audiovisualTypes that you can query for supported av formats.
On Android, the backing player is ExoPlayer, please refer here for list of supported formats.
I had good luck with the the suggestions provided by another stackoverflow question and simply used the following ffmpeg format for conversion:
ffmpeg -i input.file.mp4 -vcodec libx264 -vprofile high -preset slow -b:v 500k -maxrate 500k -bufsize 1000k -vf scale=-1:360 -threads 0 -acodec libvo_aacenc -b:a 128k converted.mp4
this works on iOS (real device) and android devices just fine.
FWIW: You can obviously also find the list of supported iOS formats in an SO answer if you don't want to query them on your device.
Thanks for your reply. It's normal that I continue to see error like these? E/ACodec: [OMX.google.h264.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010 I/ACodec: codec does not support config priority (err -1010) I/ACodec: codec does not support config priority (err -2147483648) D/MediaCodec: [OMX.google.h264.decoder] setting dataspace on output surface to #103 W/MapperHal: buffer descriptor with invalid usage bits 0x2000
– Luca Panteghini
Mar 25 at 15:31
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55326957%2fproblems-reproducing-video-on-both-system-android-ios%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The supported video formats are actually quite good documented:
On iOS, the backing player is AVPlayer. The supported formats vary depending on the version of iOS, AVURLAsset class has audiovisualTypes that you can query for supported av formats.
On Android, the backing player is ExoPlayer, please refer here for list of supported formats.
I had good luck with the the suggestions provided by another stackoverflow question and simply used the following ffmpeg format for conversion:
ffmpeg -i input.file.mp4 -vcodec libx264 -vprofile high -preset slow -b:v 500k -maxrate 500k -bufsize 1000k -vf scale=-1:360 -threads 0 -acodec libvo_aacenc -b:a 128k converted.mp4
this works on iOS (real device) and android devices just fine.
FWIW: You can obviously also find the list of supported iOS formats in an SO answer if you don't want to query them on your device.
Thanks for your reply. It's normal that I continue to see error like these? E/ACodec: [OMX.google.h264.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010 I/ACodec: codec does not support config priority (err -1010) I/ACodec: codec does not support config priority (err -2147483648) D/MediaCodec: [OMX.google.h264.decoder] setting dataspace on output surface to #103 W/MapperHal: buffer descriptor with invalid usage bits 0x2000
– Luca Panteghini
Mar 25 at 15:31
add a comment |
The supported video formats are actually quite good documented:
On iOS, the backing player is AVPlayer. The supported formats vary depending on the version of iOS, AVURLAsset class has audiovisualTypes that you can query for supported av formats.
On Android, the backing player is ExoPlayer, please refer here for list of supported formats.
I had good luck with the the suggestions provided by another stackoverflow question and simply used the following ffmpeg format for conversion:
ffmpeg -i input.file.mp4 -vcodec libx264 -vprofile high -preset slow -b:v 500k -maxrate 500k -bufsize 1000k -vf scale=-1:360 -threads 0 -acodec libvo_aacenc -b:a 128k converted.mp4
this works on iOS (real device) and android devices just fine.
FWIW: You can obviously also find the list of supported iOS formats in an SO answer if you don't want to query them on your device.
Thanks for your reply. It's normal that I continue to see error like these? E/ACodec: [OMX.google.h264.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010 I/ACodec: codec does not support config priority (err -1010) I/ACodec: codec does not support config priority (err -2147483648) D/MediaCodec: [OMX.google.h264.decoder] setting dataspace on output surface to #103 W/MapperHal: buffer descriptor with invalid usage bits 0x2000
– Luca Panteghini
Mar 25 at 15:31
add a comment |
The supported video formats are actually quite good documented:
On iOS, the backing player is AVPlayer. The supported formats vary depending on the version of iOS, AVURLAsset class has audiovisualTypes that you can query for supported av formats.
On Android, the backing player is ExoPlayer, please refer here for list of supported formats.
I had good luck with the the suggestions provided by another stackoverflow question and simply used the following ffmpeg format for conversion:
ffmpeg -i input.file.mp4 -vcodec libx264 -vprofile high -preset slow -b:v 500k -maxrate 500k -bufsize 1000k -vf scale=-1:360 -threads 0 -acodec libvo_aacenc -b:a 128k converted.mp4
this works on iOS (real device) and android devices just fine.
FWIW: You can obviously also find the list of supported iOS formats in an SO answer if you don't want to query them on your device.
The supported video formats are actually quite good documented:
On iOS, the backing player is AVPlayer. The supported formats vary depending on the version of iOS, AVURLAsset class has audiovisualTypes that you can query for supported av formats.
On Android, the backing player is ExoPlayer, please refer here for list of supported formats.
I had good luck with the the suggestions provided by another stackoverflow question and simply used the following ffmpeg format for conversion:
ffmpeg -i input.file.mp4 -vcodec libx264 -vprofile high -preset slow -b:v 500k -maxrate 500k -bufsize 1000k -vf scale=-1:360 -threads 0 -acodec libvo_aacenc -b:a 128k converted.mp4
this works on iOS (real device) and android devices just fine.
FWIW: You can obviously also find the list of supported iOS formats in an SO answer if you don't want to query them on your device.
answered Mar 24 at 19:53
herbertherbert
1,08011425
1,08011425
Thanks for your reply. It's normal that I continue to see error like these? E/ACodec: [OMX.google.h264.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010 I/ACodec: codec does not support config priority (err -1010) I/ACodec: codec does not support config priority (err -2147483648) D/MediaCodec: [OMX.google.h264.decoder] setting dataspace on output surface to #103 W/MapperHal: buffer descriptor with invalid usage bits 0x2000
– Luca Panteghini
Mar 25 at 15:31
add a comment |
Thanks for your reply. It's normal that I continue to see error like these? E/ACodec: [OMX.google.h264.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010 I/ACodec: codec does not support config priority (err -1010) I/ACodec: codec does not support config priority (err -2147483648) D/MediaCodec: [OMX.google.h264.decoder] setting dataspace on output surface to #103 W/MapperHal: buffer descriptor with invalid usage bits 0x2000
– Luca Panteghini
Mar 25 at 15:31
Thanks for your reply. It's normal that I continue to see error like these? E/ACodec: [OMX.google.h264.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010 I/ACodec: codec does not support config priority (err -1010) I/ACodec: codec does not support config priority (err -2147483648) D/MediaCodec: [OMX.google.h264.decoder] setting dataspace on output surface to #103 W/MapperHal: buffer descriptor with invalid usage bits 0x2000
– Luca Panteghini
Mar 25 at 15:31
Thanks for your reply. It's normal that I continue to see error like these? E/ACodec: [OMX.google.h264.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010 I/ACodec: codec does not support config priority (err -1010) I/ACodec: codec does not support config priority (err -2147483648) D/MediaCodec: [OMX.google.h264.decoder] setting dataspace on output surface to #103 W/MapperHal: buffer descriptor with invalid usage bits 0x2000
– Luca Panteghini
Mar 25 at 15:31
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55326957%2fproblems-reproducing-video-on-both-system-android-ios%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown