Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (79)

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

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (8143)

  • yuv420p pixel format in GStreamer ?

    5 août 2022, par cubecubed

    I am trying to stream a video from opencv/python to rtsp-simple-server via GStreamer. I am able to view the video fine in vlc, but the online streaming application I am using is very picky. I need the stream to have a pixel format of yuv420p. How do I convert a stream to this format with GStreamer ?

    


    This is my current code which creates a stream with the yuv444p :

    


    out = cv2.VideoWriter('appsrc ! videoconvert' + \
' ! x264enc speed-preset=ultrafast bitrate=600 key-int-max=40' + \
' ! rtspclientsink location=rtsp://localhost:554/video',
cv2.CAP_GSTREAMER, 0, fps, (width, height), True)


    


    I am looking for the GStreamer equivalent of -pix_fmt yuv420p

    


  • Overlaying alpha images on a video using ffmpeg

    10 mai 2016, par neuro_sys

    I have the following ffmpeg-cli command which does not produce the described effect in documentation. Could this be a bug, or I have something wrong with the command.

    ffmpeg \
       -y \
       -i small.mp4 \
       -i monkey/monkey_%04d.png \
       -filter_complex "[0:v][1:v]overlay=enable='between(t,1,5)'[out1]" \
       -map '[out1]' \
       output.mp4

    I expect it to overlay the #1 stream on top of #0 between seconds 1 and 5.

    You may download the test tarball from this link :

    It includes assets for the test case.

    The build I tried with :

    • ffmpeg-3.0.2-64bit-static (available online)
  • c++, FFMPEG, how to use/set private options ?

    15 avril 2012, par Mat

    I'm trying to get a video c++ video encoder to run. I'm coding in VisualStudio 2010 and use a precompiled version of the library (Zeranoe's FFmpeg Build) from April 2012. Now - the Api doesn't seem to correspond anymore to most references that i find online.

    Particularily I wonder about private options. Through google I find things like this :

    http://ffmpeg.org/pipermail/ffmpeg-cvslog/2011-August/039836.html

    but I don't understand how to access and set those private options that replace the deprecated global ones.

    Any help on this ?