Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (101)

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

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

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

  • binkaudio : switch to the new send/receive API

    24 novembre 2016, par Anton Khirnov
    binkaudio : switch to the new send/receive API
    

    It is more natural for this codec and allows to avoid awkward constructs
    like "consuming 0 bytes from input". Also, keep a reference to the input
    packet to avoid unnecessary copying.

    • [DBH] libavcodec/binkaudio.c
  • Image overlay fails using FFMPEG4Android

    21 janvier 2016, par ReubenCH

    I am trying to watermark a video using FFMPEG4Android.
    I am using the app on the android market from here.

    The command used is

    ffmpeg -i /sdcard/videokit/in.mp4 -i /sdcard/videokit/logos/1.png -i
    /sdcard/videokit/logos/2.png -i /logos/3.png -filter_complex
    "[0:v][1:v]
    overlay=main_w-overlay_w-10:main_h-overlay_h-10:enable=’between(t,0,1)’
    [tmp] ; [tmp][2:v]
    overlay=main_w-overlay_w-10:main_h-overlay_h-10:enable=’between(t,2,3)’
    [tmp2] ; [tmp2][3:v]
    overlay=main_w-overlay_w-10:main_h-overlay_h-10:enable=’between(t,4,5)’"
    /sdcard/videokit/output.mp4

    But everytime I run the command the app fails

    Opening an output file :
    overlay=main_w-overlay_w-10:main_h-overlay_h-10:enable=’between(t,0,1)’.
    No such filter : ’’ Error configuring filters. exit_program : 1

    Can I get any help for the same ?

  • Fix description of —rice-partition-order in flac -H

    9 janvier 2016, par Thomas Zander
    Fix description of —rice-partition-order in flac -H
    

    This is more of a "human language versus programmer parlor" issue.
    src/flac/main.c will return usage error for an argument greater
    than FLAC__MAX_RICE_PARTITION_ORDER (15u).
    While in programming "0..16" usually means "from zero to 15", in
    natural human-to-human talk, it would rather mean "from zero to 16".
    This changes the wording a bit to avoid this misunderstanding.

    Closes : http://sourceforge.net/p/flac/bugs/352/
    Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>

    • [DH] src/flac/main.c