Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (9550)

  • Removed Base64 HTML5 Audio() tests, redundant as numerous MIME (audio/mpeg, audio/mp3 etc.) checks seem to cover it.

    1er juin 2010, par Scott Schiller

    m script/soundmanager2-jsmin.js m script/soundmanager2-nodebug-jsmin.js m script/soundmanager2.js Removed Base64 HTML5 Audio() tests, redundant as numerous MIME (audio/mpeg, audio/mp3 etc.) checks seem to cover it.

  • Cross device h264 compatible html5 video

    26 juin 2021, par mikkelam

    I'm trying to serve a large video of timelapses generated from a series of images.
    
Using FFmpeg I have encoded the video as an h264 mp4.

    


    ffmpeg -framerate 24 -i "/app/download/%d.jpeg" -c:v libx264 -crf 23 -preset fast -tune animation -report -vf "format=yuv420p" -y /app/output.mp4


    


    I'm running into compatibility issues where the videos are not playable on iOS (safari) as well as on Windows (all browsers except chrome). Where I'm getting the following error :

    


    Error Code: NS_ERROR_DOM_MEDIA_FATAL_ERR (0x806e0005) Details: mozilla::MediaResult __cdecl mozilla::WMFVideoMFTManager::ValidateVideoInfo(void): Can't decode H.264 stream because its resolution is out of the maximum limitation

    


    See the full FFmpeg log here : https://pastebin.com/QUEPh3q2

    


    I'm just looking for some resource or knowledge of how to encode my media for maximum compatibility while still preserving high quality and resolution.

    


    Problem :
    
Which options I should be using in FFmpeg to maximize compatibility ?

    


  • read videos from a .m3u8 file with HTML5

    6 septembre 2016, par LeCintas

    I am looking for use a .m3u8 file to play a video playlist on my local HTML page but nothing happened when i run the page.

    Here is my HTML code :

       
           
           
       
       
           <video height="360" controls="controls" autoplay="autoplay">
               <source src="testlist.m3u8" type="application/x-mpegURL"></source>
           </video>
       

    testlist.m3u8 is in the same folder as the html file and .mp4 files.

    here is the command that i used to create the .m3u8 file and the sliced .mp4 files.

    ffmpeg -i "video.mp4" -vcodec libx264 -acodec copy -flags -global_header -map 0:0 -map 0:1 -f segment -segment_time 4 -segment_list_size 0 -segment_list testlist.m3u8 -segment_format mpegts stream%d.mp4