Recherche avancée

Médias (91)

Autres articles (80)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (12689)

  • Revision 343c092e2e : High bit-depth support for wedge partition expt Change-Id : Idbd27e66d4f4a7953f8

    11 avril 2015, par Debargha Mukherjee

    Changed Paths :
     Modify /vp9/common/vp9_reconinter.c


     Modify /vp9/common/vp9_rtcd_defs.pl


     Modify /vp9/encoder/vp9_encoder.c


     Modify /vp9/encoder/vp9_sad.c


     Modify /vp9/encoder/vp9_variance.c



    High bit-depth support for wedge partition expt

    Change-Id : Idbd27e66d4f4a7953f888137d5752856215a6760

  • How to speed up ffmpeg video conversion

    22 avril 2018, par user2993497
    ffmpeg -i video.mp4 -c:v libvpx-vp9 -keyint_min 150 -g 150 -tile-columns 4 -frame-parallel 1  -f webm -dash 1 -an -vf scale=160:190 -b:v 250k -dash 1 video_160x90_250k.webm -an -vf scale=320:180 -b:v 500k -dash 1 video_320x180_500k.webm -an -vf scale=640:360 -b:v 750k -dash 1 video_640x360_750k.webm -an -vf scale=640:360 -b:v 1000k -dash 1 video_640x360_1000k.webm -an -vf scale=1280:720 -b:v 1500k -dash 1 video_1280x720_1500k.webm

    I’m converting a single video into multiple videos at different resolutions. But it’s painfully slow. how can I speed this up ?

  • ffmpeg open remote video with high latency while gstreamer not

    30 octobre 2014, par madcc

    I use MJPEG-Streamer to send my remote camera video via wifi. I use such command to see video :

    gstreamer :

    gst-launch -v souphttpsrc location= "http://192.168.1.1:8080/?action=stream&type=.mjpg" do-timestamp=true is_live=true ! multipartdemux ! jpegdec ! autovideosink

    ffmpeg :

    ffplay "http://192.168.1.1:8080/?action=stream&type=.mjpg"

    or :

    ffplay "http://192.168.1.1:8080/?action=stream&type=.mjpg" -fflags nobuffer

    however the ffplay has a high latency up to 3 10 seconds in my test, while the gstreamer
    show almost no latency.

    when using localhost MJPEG-Streamer, both two methods show low latency. so what’s the reason ? and how to decrease the latency ?

    more detail :

    I want to use opencv to capture a remote camera,my opencv compile with ffmpeg support but without gstreamer support ( I tried but failed,the cmake seemed to not find my gstreamer,I don’t know which gstreamer library to install in opensuse 13.1), I can get the video in opencv but with high latency,so I compared ffmpeg with gstreamer,the result is as above.so how to decrease the latency ? I read this link,but still no solution.

    thank you.