Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (67)

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

  • How to convert MKV movies 5.1 audio tracks to 2.0 (Stereo) but keep the original ones

    9 avril 2018, par aur0n

    To solve a problem I had where 5.1 movies had really quite dialogues, I’m using FFMPEG to convert every audio track of my MKV movies to an 2.0 track with audio normalization, leaving video and subtitles intact.

    Here’s what the command looks like :

    for /r %%i in (*.mkv) do (
       @ffmpeg.exe -hide_banner -v 32 -stats -y -i "%%i" -map 0:v -map 0:a -map 0:s? -c:s copy -c:v copy -acodec ac3 -ac 2 -ar 48000 -ab 640k -af %aproc2%  -f matroska "%%~ni [Stereo].mkv"
    )

    What I’d like to do now is having these converted audio track added to the MKV among the 5.1 tracks, and not replacing the originals, which I may want in future.

    I’m not really an expert of FFMPEG, so I’m looking for some help.

  • Anomalie #4717 : Erreurs nombre d’argument des filtres

    14 avril 2021, par jluc -

    Le compilateur peut vérifier l’arité min et max d’une fonction PHP :

    function getCountOfNotOptionalParameters(ReflectionFunction $refl) 
        $i=0 ;
        foreach( $refl->getParameters() as $param)
            if ($param->isOptional()) break ;
            $i++ ;
        
        return $i ;
    
    $reflection = new ReflectionFunction(’filtre_implode_dist’) ;
    $min = getCountOfNotOptionalParameters($reflection) ;
    $max = $reflection->getNumberOfParameters()."\n" ;
    echo "il faut mini $min arguments et au maximum $max" ;
    
  • avcodec/lcldec : Check that dimensions are a multiple of the subsample factors

    13 mai 2013, par Michael Niedermayer
    avcodec/lcldec : Check that dimensions are a multiple of the subsample factors
    

    Other dimensions would not work correctly currently,
    also ask for a sample for files that fail this check.

    This fixes an integer overflow leading to out of array
    accesses.

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/lcldec.c