Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (111)

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

  • FFMPEG Change Volume Levels with Amix

    27 septembre 2016, par Jeremy

    Trying to alter the volumes of my input files, and this is what i’ve been trying :

       -ss 0.300 -i /data/user/0/me.rapchat.rapchat/cache/recording.m4a -i /data/user/0/me.rapchat.rapchat/cache/beats/05a0f287-4183-4ab0-8233-049b95ca38fa.m4a -filter_complex [0:a]volume=1.5[a0];[1:a]volume=1.5[a1]; [a0][a1]amix=inputs=2:duration=shortest:dropout_transition=3 -preset ultrafast /data/user/0/me.rapchat.rapchat/cache/rap.m4a

    and the error i’m getting is :
    [AVFilterGraph @ 0xf7309040] No such filter : ’’
    Error initializing complex filters.
    Invalid argument

    Link to LOGS : http://pastebin.com/PXQmYJH0

    I’ve seen other examples of issues like this, and have done searching to adjust them. I followed this, and this but can’t seem to get my command right. Does anyone see anything glaring ?

    Thank you !

  • The same frame of the image, through the same algorithm or library, compression twice after the image is same or not

    15 août 2018, par karllen

    The same frame of the image, through the same algorithm or library, lossy compression twice, compression twice after the image is same or not ?

  • Using "volume" argument in ffmpeg volume audio filter

    3 septembre 2018, par xylophagous

    I wish to "silence" the background noise in an audio, without removing the silence entirely - so as to keep the length of the audio constant. I am trying to use volume filter in ffmpeg like

    ffmpeg -i input.flac -filter:a "volume='if(lt(volume,-8dB),0,1)':eval=frame" output.flac

    but this seems to output the same file as input. I checked this by seeing the volumedetect output and it is identical for input.flac and output.flac.

    I am new to ffmpeg so sorry if this is preliminary ; quick help or pointers to relevant examples appreciated. Thanks !