Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (94)

  • 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 ;

  • 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.

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (15854)

  • Issue with playing some .mp4 on Google Chrome

    19 mai 2015, par Alex

    I have downloaded some .mp4 files from shutterstock to use them in my website project.

    Everything works perfect on localhost, i can play the movies like localhost/example.mp4 on every browser. I uploaded the files on my server, but now, it won`t play with Google Chrome (myserver.com/example.mp4), but will play with other browsers. This is very strange.

    Anyone have any explanation ?

    I checked the mime types in my cPanel account and all are ok, also i added the next code into htaccess but still doesn`t work.

    AddType video/ogg .ogv
    AddType video/mp4 .mp4
    AddType video/mp4 .mov
    AddType video/webm .webm

    and

    <filesmatch mp4="mp4">
    Satisfy any
    order allow,deny
    allow from all
    </filesmatch>

    What should be the issue ? Is a file issue or an issue from the server ? Cues from localhost it will open in Google Chrome.

  • Google drive chunk to m3u8 ?

    30 septembre 2019, par GINIX PHOENIX

    I have a question how create chunk file from google drive into m3u8 file by ffmpeg.

  • How do I save `RTSP` streams as `*.mp4` files in Golang ? [closed]

    14 septembre 2021, par Clancy Zeng

    I need to use Golang to save the data from the RTSP stream to a *.mp4 video file for a specified length of time.

    &#xA;

    I wanted to install an FFmpeg application and then call a command like this from Golang to solve my needs.

    &#xA;

    &#xA;

    ffmpeg -i rtsp ://192.168.108.132:8554/profile0 -r 16 -tt 60 /tmp/test.mp4

    &#xA;

    &#xA;

    But installing FFMPEG takes up hundreds of megabytes of space.So this idea was rejected by the leadership.

    &#xA;

    Is there a pure Golang implementation library that can address my needs ?Or is there a golang-only library that parses RTSP streams and saves them as *.MP4 video files ?

    &#xA;