Recherche avancée

Médias (1)

Mot : - Tags -/iphone

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 (10068)

  • Update documentation for new compression presets

    10 novembre 2014, par Martijn van Beurden
    Update documentation for new compression presets
    

    Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>

    • [DH] doc/html/documentation_tools_flac.html
    • [DH] include/FLAC/stream_encoder.h
    • [DH] src/flac/main.c
  • openCV 2.4.10 lost cinepak radius codec

    28 octobre 2014, par user3652747

    I am working on a Windows 7 64 bit platform.

    Before :
    I was using OpenCV 2.4.6, compiled by myself with CodeBlocks and a MinGW compiler. When recording a video, I was able to select the Cinepak Radius Codec (CVID) and all my world was shinny. I don’t remember tweaking a lot the configuration of CMAKE when creating the CodeBlocks project to compile OpenCV.

    Now :
    I download the last stable version OpenCV 2.4.10 and I have to use this one. So I applied the same recipe : CMAKE, CodeBlocks project, compile. But then I cannot choose the Cinepak Radius Coded while creating a new video.

    Questions :
    Did the Codec disappears from OpenCV or did I miss one flag in the CMAKE configuration ?

    Of course I tried other config, but to me, I just had to activate WITH_FFMPEG and WITH_VFW flags. Do you have any tips on that ?

    Thanks !

  • Normalize audio, then reduce the volume in ffmpeg

    27 octobre 2014, par Steve Sheldon

    I have a question relating to ffmpeg. First here is the scenario, I am working on a project where I need to have some audio with a presenter talking and then potentially some background music. I also have the requirement to normalize the audio. I would like to do this without presenting a bunch of options to the user.

    For normalization I use something similar to this post :

    How to normalize audio with ffmpeg.

    In short, I get a volume adjustment which I then apply to ffmpeg like this :

    ffmpeg -i <input /> -af "volume=xxxdB" <output>
    </output>

    So far so good. Now let’s consider the backing track, it doesn’t want to be the same volume as the presenters voice, this would be really distracting, so I want to lower that by some percentage. I can also do this with ffmpeg, I could do it like this (example would set volume to 50%) :

    ffmpeg -i <input /> -af "volume=0.5" <output>
    </output>

    Using these two commands back to back, I can get the desired result.

    My question has two parts :

    1. Is there a way to do this in one step ?
    2. Is there any benefit to doing it in one step ?

    Thanks for any help !