1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
   |  
function get_mediainfo(mediainfoIndex) {
    switch (mediainfoIndex) {        
 
        case 0:
            return  { "mediaUrl": "Creation_reception.wmv",
                      "placeholderImage": "Creation_reception_Thumb.jpg",
                      "chapters": [    
                                        { "title": "Liste des réceptions",   "time": 8.8451818,     "imageUrl": "Creation_receptionContrôle Thu_mb de marqueur 00.00.08.8451818.jpg"} ,    
                                        { "title": "Créer une réception",   "time": 21.6793672,     "imageUrl": "Creation_receptionContrôle Thu_mb de marqueur 00.00.21.6793672.jpg"} ,    
                                        { "title": "Ajouter des articles",   "time": 71.3013628,     "imageUrl": "Creation_receptionContrôle Thu_mb de marqueur 00.01.11.3013628.jpg"} ,    
                                        { "title": "Valider la réception",   "time": 125.74033,     "imageUrl": "Creation_receptionContrôle Thu_mb de marqueur 00.02.05.7403300.jpg"}                
                                  ] };                                                                
 
        default:
             throw Error.invalidOperation("No such mediainfo");
     }
} | 
Partager