Recherche avancée

Médias (91)

Autres articles (111)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (11890)

  • avcodec/svq1enc : Move initializing DSP out of svq1enc.c

    28 février 2024, par Andreas Rheinhardt
    avcodec/svq1enc : Move initializing DSP out of svq1enc.c
    

    Otherwise svq1enc.o gets pulled in by the svq1encdsp checkasm
    test and it in turn pulls the rest of lavc in.
    Besides being bad size-wise this also has the downside that
    it pulls in avpriv_(cga|vga16)_font from libavutil which are
    marked as being imported from another library when building
    libavcodec as a DLL and this breaks checkasm because it links
    both lavc and lavu statically.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/svq1enc.c
    • [DH] libavcodec/svq1encdsp.h
  • why 'read' command in shell script is missing initial characters ? [duplicate]

    15 avril 2019, par tod

    This question already has an answer here :

    I have the following shell script and it is missing some initial characters (it misses initial couple of characters, so far in my observation) from each line except the first line.

    And this happens only when I use the ffmpeg command. Otherwise, it is fine. But this command does the actual task in this script.

    Why is it so and what is the fix ?

    #!/bin/bash

    while read line; do
       printf "%s\n" "$line"
       ifile=$line
       printf "%s\n" "$ifile"
       ofile=abc_$line
       printf "%s\n" "$ofile"

       ############### Problem is the following command: ##########
       ffmpeg -y -i $ifile -c:v libx264rgb -b:v 512k -bf 0 -pix_fmt rgb24  -r 25 -strict -2 $ofile
       ##########rest is fine##########

       echo $ifile
    done &lt; file_list
  • postproc : Made QP, nonBQP, and pQPb arrays

    22 avril 2015, par Tucker DiNapoli
    postproc : Made QP, nonBQP, and pQPb arrays
    

    Also pulled QP initialization out of inner loop, which removed some redundent code.

    Added some dummy fields to PPContext to allow current code to work while
    changing the rest of the postprocessing code to support the arrays.

    I also increased alignment requirements for some fields in the PPContext struct to
    support future avx2 code.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libpostproc/postprocess_internal.h
    • [DH] libpostproc/postprocess_template.c