BİLGİ What are the supported Video file formats - Learning

Övünç DİNÇ

Çözüm Ekibi
Kayıtlı Üye
Katılım
8 Eki 2016
Mesajlar
939
Çözümler
4
Tepki puanı
276
Puanları
63
Yaş
42
Konum
İzmir
Web Sitesi
sapforo.com
Kullandığınız SAP Modülleri
  1. SAP MM
  2. SAP PP
  3. SAP FI
  4. SAP QM
Katılım Bölgesi
  1. İzmir
Symptom
  • What are the supported Video file formats in Learning
Environment
  • Learning
Resolution
  • In principle, the LMS has no bearing on what file formats are supported. This question is more about what the web browser supports. When launching a file the LMS simply points the browser to the file or page without worry about what the file type is. However, we can give some recommendations.
  • When a browser points directly to a video file it will usually download or load it to an external player provided by the operating system. This can cause problems because the user might have to wait for the whole video to download and load before viewing. Users will also need the player software to be installed or configured on their computer.
  • The best way to provide a video to your users is some kind of web page with an embedded video instead of directly linking the video file. The easiest way to do this is with a video hosting service like YouTube as they provide code you can use to embed the video in a web page. Without using a service like YouTube, the most widely used format is mp4 which can also be embedded in an html webpage and typically placed in the same directory as the video file. Whichever video format you go with, testing should be done with as many systems and browsers as your organization supports so you can be confident with its behavior.
 

Övünç DİNÇ

Çözüm Ekibi
Kayıtlı Üye
Katılım
8 Eki 2016
Mesajlar
939
Çözümler
4
Tepki puanı
276
Puanları
63
Yaş
42
Konum
İzmir
Web Sitesi
sapforo.com
Kullandığınız SAP Modülleri
  1. SAP MM
  2. SAP PP
  3. SAP FI
  4. SAP QM
Katılım Bölgesi
  1. İzmir
http://jsbin.com/afif/202/edit?html,output

Kod:
<!DOCTYPE html>
<html><head>
    <meta http-equiv='X-UA-Compatible' content='IE=edge' />
    <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
    
    <title>OData Date Formats</title>
    
    <script id='sap-ui-bootstrap' type='text/javascript'
        src='https://sapui5.netweaver.ondemand.com/resources/sap-ui-core.js'
          data-sap-ui-theme='sap_bluecrystal'
       data-sap-ui-xx-fakeOS="ipad"
        data-sap-ui-libs='sap.ui.commons,sap.ui.ux3,sap.ui.table,sap.m'>
 
    </script>
    
    
    <script>
                        var html1 = new sap.ui.core.HTML("html1", {
                content:
                        "<video width='50%' height='50%' autoplay>" +
                        "<source src='http://www.w3schools.com/html/movie.mp4' type='video/mp4'>" +
                        "Your browser does not support the video tag." +
                        "</video>"
        });
    //Create a panel instance
var oPanel = new sap.ui.commons.Panel();
//Add something to the panel's content area
oPanel.addContent(html1);
//Attach the panel to the page
oPanel.placeAt("content");
      
     </script>
    </head>
    <body class='sapUiBody'>
        <div id='content'></div>
    </body>
</html>
 
Üst