Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (111)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (11510)

  • playing video while encoding with ffmpeg

    28 novembre 2013, par user1857519

    in my Webapplication the user should be able to upload his own videos (either format).
    I am using ffmpeg to encode the video to .mp4 and .flv using the command :

    ffmpeg -i uservid.whatever output.mp4 output.flv

    while ffmpeg encodes the video, it's loaded in the flowplayer on the users-page. But flowplayer always says "file not found" cause ffmpeg is not yet finish with encoding.

    Is there a possibility to load the video in a certain player even if it is not yet completly encoded ? maybe there is a ffmpeg option ?

    Thanks

  • Fragmented mp4 cannot be played on pure html5 video

    23 novembre 2017, par Kevin Youngho Seo

    I need to use a video tag to serve over 3GB of video on the web.
    When the page is loaded, it takes a long time for the media element to receive the ’loadedmetadata event’.

    I’ve found that the size of the moov box is too large (33MB).
    So when I re-encoded it with the ’empty_moov + frag_keyframe’ option of ’ffmpeg’, but it also took longer to fetch all fragmented information from the ’Inspector - Network’ tab in Chrome.

    Is there a way to speed up loading when playing ’fragmented mp4’ with html5 video tag ?

  • on FF 3.6 with no flash, onLoad event is not triggered

    8 octobre 2013, par jgabios
    on FF 3.6 with no flash, onLoad event is not triggered
    

    code to reproduce the error :
    soundManager.createSound(
    id : 'mysound',
    url : '/sounds/mysound.ogg',
    autoLoad : true,
    autoPlay : true,
    onload : function()
    alert('loaded') ;

    ) ;
    adding s._a.load() ; on line 2937, triggers the onload event.