Recherche avancée

Médias (91)

Autres articles (63)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (3866)

  • Anomalie #3182 (Nouveau) : groupe mots - autoriser() pas forcément chargée

    7 mars 2014, par Sylvain Lesage

    Dans le plugin mots, la fonction autoriser() n’est pas forcément chargée au moment de son appel : http://zone.spip.org/trac/spip-zone/browser/_core_/plugins/mots/action/supprimer_groupe_mots.php#L41

  • Usage with FFMPEG on a vServer ?

    28 février 2020, par MaxChri

    Heyo !

    I’m just setting up a video platform for a small project. So far a user is able to upload a video in any common format. The video will be converted using FFMPEG.

    ffmpeg -i input.mp4 -vcodec h264 -acodec aac -strict -2 output.mp4

    At the moment I’m testing all the stuff on my 3€ testserver which is actually pretty slow. But imagine, a 10 seconds 60fps full hd video takes like 6 minutes of converting. I think I’m not able to run this configurations on a live version. :D

    My current test setup :
    vCPU 1x (Events per second : 175)

    So my question is, which cpu should I use ? I searched for a server on hetzner. The setup with dedicated vCPU is especially declared for video converting. But the cpu benchmark is not much better with 600 events per second while the price is around 20€.

    What do I need to convert a 10 min video (full hd 60fps) in just 1-2 minutes ? My budget should be around 30€/m.

  • How to delete the media data while writing by FFMPEG ?

    13 février 2017, par Jerikc XIONG

    How to delete part of the media content end of the file while writing by FFMPEG ?

    • The file is being writing by write_packet
    • The media data is end of the file
    • Using FFMPEG 2.8

    Writing packet at this moment like this :

    // the fd doesn't close
    1 2 3 4 5 6 7 8 9
                   |
                   fd

    I need to delete 7 8 9 and the fd pointing 6 and ready to write the next one.

    // ready to write the next one
    1 2 3 4 5 6
             |
             fd

    Any suggestion is prefered, thanks.