S3Bubble OTT Streaming

shape
shape
shape
shape
shape
shape
shape
shape

S3Bubble Support Forums

To stay up to date with the latest S3Bubble updates and tutorials please make sure you sign up to our YouTube Channel.

home Forums General Questions & Bugs player not visible in app

Viewing 1 reply thread
  • Author
    Posts
    • #31377
      zawan_na
      Participant

      i have tried oembed , shortcode , aws hosted , jwplayer hosted, iframe none of them visible in app.
      my app is ionic 3 android. kindly help.
      reply from my app team
      http://prntscr.com/h1a0zq

    • #31390
      s3bubble
      Keymaster

      Hi zawan_na,

      Not sure about ionicframework. But i know if you use http://www.appcelerator.com/ which is smilar but alot more advanced from a native perspective you can just have the player in a webview and it will work.

      If you need to use the Native ios player or Android player you will need to add the url direct.

      http://docs.appcelerator.com/platform/latest/#!/api/Titanium.Media.VideoPlayer

      var vidWin = Titanium.UI.createWindow({
          title : 'Video View Demo',
          backgroundColor : '#fff'
      });
      
      var videoPlayer = Titanium.Media.createVideoPlayer({
          top : 2,
          autoplay : true,
          backgroundColor : 'blue',
          height : 300,
          width : 300,
          mediaControlStyle : Titanium.Media.VIDEO_CONTROL_DEFAULT,
          scalingMode : Titanium.Media.VIDEO_SCALING_ASPECT_FIT
      });
      
      videoPlayer.url = 'This would be you .m3u8 url or mp4 url grabbed directly from the S3Bubble interface';
      vidWin.add(videoPlayer);
      vidWin.open();

      Best Regards

      Sam

      • This reply was modified 6 years, 6 months ago by s3bubble.
Viewing 1 reply thread
  • The forum ‘General Questions & Bugs’ is closed to new topics and replies.