Recherche avancée

Médias (91)

Autres articles (64)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (5425)

  • Merge/Blend/Composite transparent webm files with a jpg/png using ffmpeg

    13 avril 2021, par Lokanath

    I previously had generated color.webm and alpha.webm files withffmpeg using png images.
However, when I play the generated videos in my application it consumes quite some resources so I have decided to create a standard video(No alpha needed), I cannot re-record the videos as there are a lot of them at this point.

    


    I am generating the alpha and color video using the following command ffmpeg -framerate 30 -i img%d.png -filter_complex "alphaextract[a]" -map 0:v -c:v libvpx-vp9 -pix_fmt yuv420p -auto-alt-ref 0 -crf 15 -b:v 0 color.webm -map "[a]" -c:v libvpx-vp9 -pix_fmt yuv420p -auto-alt-ref 0 -crf 15 -b:v 0 alpha.webm

    


    I am looking to get a final video output where in alpha values are replaced with the png/jpg image, it's more like replacing the green screen with a background however in my case greenscreen is the alpha channel.

    


    Could any one let me know how to combine alpha.webm, color.webm with a jpg/png image without minimal or no quality loss ?
.

    


  • AR Drone 2 and ffserver + ffmpeg streaming

    5 mars 2013, par BjarkeHS

    I want to be able to restream the video feed of the AR Drone 2 from a Debian Server to Flash.

    I am aware that the AR Drone uses the codec p264. I'm totally green when it comes to video codecs, so I don't know what will be suitable for the goal I want to achieve ?

    I have been able to stream the video feed from the AR Drone but with very high latency and extremely low quality, compared to when I directly connect to the AR Drone using ffplay.

    I currently use the .swf example in the standard ffserver.conf :

    <stream>
    Feed feed1.ffm
    Format swf
    VideoFrameRate 30
    VideoIntraOnly
    NoAudio
    </stream>

    And the settings for the .ffm Feed are as follows :

    <feed>
    File /tmp/feed1.ffm
    FileMaxSize 17K
    ACL allow 127.0.0.1
    NoAudio
    </feed>

    The command I use for giving input to the ffserver feed :

    ffmpeg -i http://192.168.1.1:5555 http://localhost:8090/feed1.ffm

    How am I able to achieve lower latency and higher quality, since the stream is currently unwatchable ?

  • webpdec : Fix decoding of the huffman group indices.

    3 juillet 2014, par Justin Ruggles
    webpdec : Fix decoding of the huffman group indices.
    

    Per the specification, "The red and green components of a pixel
    define the meta Huffman code used in a particular block of the ARGB
    image."

    • [DBH] libavcodec/webp.c