Recherche avancée

Médias (91)

Autres articles (73)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (11901)

  • twinvq : consume block_align+1 packets as full ones

    20 octobre 2013, par Kostya Shishkov
    twinvq : consume block_align+1 packets as full ones
    

    They can be produced by VQF.

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DH] libavcodec/twinvq.c
  • hevc_ps : Use AV_PIX_FMT_YUVJ420P if YUV 4:2:0 8-bit full scale

    3 novembre 2013, par Yusuke Nakamura
    hevc_ps : Use AV_PIX_FMT_YUVJ420P if YUV 4:2:0 8-bit full scale
    

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] libavcodec/hevc_ps.c
  • ffmpeg make image and movie in one command

    22 juin 2012, par knishua

    this is the situation :
    given a thumbnail, i need to overlay it on top of an image.

    so, i need to scale image pass it as parameter to overlay pass that to drawtext.

    I have got so far, adding multiple text + overlay + thumbnail,

    1. ffmpeg -threads 8 -i D:/imagesequence/background.jpg -vf "movie=&#39;D\:/imagesequence/dpx/thumbnail.jpg&#39; [watermark]; [in][watermark] overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/3[water];[water] drawtext=fontsize=32:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text=&#39;shotName&#39;:x=(w)/2:y=(h)-50,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text=&#39;Notes \:&#39;:x=(w)/5:y=(h)-90,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text=&#39;Frame Range \:&#39;:x=(w)/5:y=(h)-130,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text=&#39;Lens \:&#39;:x=(w)/5:y=(h)-170,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text=&#39;Undistortion \:&#39;:x=(w)/5:y=(h)-210,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text=&#39;Image Sequence \:&#39;:x=(w)/5:y=(h)-250,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text=&#39;Date \:&#39;:x=(w)/5:y=(h)-290,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text=&#39;Element Name \:&#39;:x=(w)/5:y=(h)-330,drawtext=fontfile=/Windows/Fonts/arial.ttf:text=&#39;FUTUREWORKS&#39;:x=130:y=200:fontsize=54:fontcolor=White[out]" D:\imagesequence\dpx\brn_055.0000.dpx

    2. ffmpeg -threads 8 -i D:\imagesequence\dpx\brn_055.%04d.dpx -vf "drawtext=fontfile=/Windows/Fonts/arial.ttf:text=&#39;shotcam&#39;:x=(w)/2:y=(h)-35:fontsize=24:fontcolor=Yellow,drawtext=fontfile=/Windows/Fonts/arial.ttf:text=&#39;Frame \:&#39;:x=(w)-600:y=(h)-35:fontsize=24:fontcolor=Yellow,drawtext=fontfile=/Windows/Fonts/arial.ttf:text=&#39;Focal Length \:&#39;:x=(w)-600:y=(h)-65:fontsize=24:fontcolor=Yellow" D:\imagesequence\dpx\test2.mov

    3. how do i scale an image and pass it to movie, in 1

    4. how do i make a blackscreen size that of an image say
      'D :\imagesequence\dpx\brn_055.0001.dpx' and pass it to input in 1

    5. is it possible do bother 1 and 2 in one command line ( ffmpeg ....)
      i.e. make an image from first point ( 1 ) and continue with making .mov ( of 1 image + input from point 2 )

    or in other words if it is not possible to do (1 + 2) in one command then is it possible to first execute 1 then execute 2 ( but with output from 1)
    do it