Advanced search

Medias (1)

Tag: - Tags -/epub

Other articles (63)

  • Other interesting software

    13 April 2011, by

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website: http://videopress.com/
    License: GNU/GPL v2
    Source code: (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 October 2010, by

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Librairies et logiciels spécifiques aux médias

    10 December 2010, by

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel; FFMpeg avec le maximum de décodeurs et (...)

On other websites (4201)

  • lavc/h264: move green meta logging out of the sei decoding

    13 June 2016, by Clément Bœsch
    lavc/h264: move green meta logging out of the sei decoding
    

    This will simplify the next Libav merge where SEI decoding doesn’t have
    access to the debug level anymore.

    • [DH] libavcodec/h264.c
    • [DH] libavcodec/h264_sei.c
  • lavc/h264_sei: fix broken style around green metadata code

    13 June 2016, by Clément Bœsch
    lavc/h264_sei: fix broken style around green metadata code
    
    • [DH] libavcodec/h264.h
    • [DH] libavcodec/h264_sei.c
  • Making a green screen background in ffmpeg

    1 May 2016, by Paul Tomblin

    I’m trying to make a green screen background that I can use to overlay other stuff on top of. I’m using information from this answer and using the following command:

    ffmpeg -f lavfi -i color=color=green -s 1920x1080 -t 3600 -r 60 small_green.mp4

    However, when I open it up in Quicktime, the inspector window seems to be saying that it’s actually 1440x1080 instead of 1920x1080.

    enter image description here

    And when I bring it into VLC, it seems to be saying that it’s 1920x1090
    enter image description here

    But ffprobe seems to be saying it’s 1920x1080:

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'small_green.mp4':   Metadata:
       major_brand     : isom
       minor_version   : 512
       compatible_brands: isomiso2avc1mp41
       encoder         : Lavf56.36.100   Duration: 01:00:00.00, start: 0.000000, bitrate: 40 kb/s
       Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 3:4 DAR 4:3], 34 kb/s, 60 fps, 60 tbr, 15360 tbn, 120 tbc (default)
       Metadata:
         handler_name    : VideoHandler

    And when I bring it into Garmin VIRB Edit, it reports that it’s 1440x1080. So how do I make ffmpeg spit out a video that really is HD 1920x1080 resolution?