Recherche avancée

Médias (91)

Autres articles (68)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

Sur d’autres sites (10433)

  • Why does ffmpeg h264 decoder stop decoding when certain type of packets are coming in the input stream ?

    28 juillet 2018, par jamsme

    I used av_read_frame to get the AVPacket from encoded h264 file. But when this packet (00 00 01 05 94 5a 33 e7 4d 6b d7 ad 13 86 ff 47 83 93 31 f1 e3 0a) is in the input stream (h264 video) ffmpeg decoder stops decoding frames for any subsequent AVPackets.
    But if I skip this packet to provide to the decoder the next AVPackets decode just fine. What is wrong with this packet ? Or what is wrong with the ffmpeg decoder ?

    Below is the test stream for reference.

    https://drive.google.com/open?id=1rHCfG4csA3rB4LSgErEBn1F3WfI5nUVr

  • Android - 360 video metadata

    11 mai 2017, par Xys

    So with ffmpeg I’ve concatenated two 360 videos into one. The problem is that I lost all the 360 video metadata in the final video (so it’s not recognized as a 360 video anymore). If I use exiftool on the final video, I lack those metadatas :

    • Spherical : true
    • Stitched : true
    • Stitching Software : Spherical Metadata Tool
    • Projection Type : equirectangular

    I’ve tried to inject those metadatas with ffmpeg, like this for example :

    ffmpeg -i  -metadata Spherical="true" -codec copy

    I don’t get any errors doing that, but exiftool still doesn’t show the metadatas.

    I know Google has a Python script that does this well, here .

    But I would like to inject metadatas in my app as well, any help would be much appreciated,

    thanks !

  • Using ffmpeg to remove green screen from video

    27 mai 2024, par CYAD

    I have a video : https://drive.google.com/file/d/1tiP2fX0Xfc6YjIymcHyEXP8-JqEJrlgG/view

    


    I'm trying to use ffmpeg to remove the green screen but none of the commands I use work. I saved a frame as a png and was able to remove the green from it :

    


    ffmpeg -i green.png -vf chromakey=green:0.1 out.png

    


    but the video edit does nothing.

    


    ffmpeg -i video.mp4 -vf chromakey=DarkGreen:similarity=0.2:blend=0.3 output4.mov

    


    I'm on a windows machine and need to output a format iOS and Android can use, though multiple formats are fine. Any thoughts ?