Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (47)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

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

Sur d’autres sites (9136)

  • doc : remove the reference to supporting AviSynth 2.5

    24 mars 2015, par Stephen Hutchinson
    doc : remove the reference to supporting AviSynth 2.5
    

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

    • [DH] doc/general.texi
  • Subtract a specific string from a variable in a for loop

    14 octobre 2020, par Filip

    I am making a file converter with batch using FFMPEG.

    &#xA;

    I have encountered a problem when trying to subtract the name of a file from the complete link to the file to get the directory of the folder it is in so after the file is converted it can be put into that directory.

    &#xA;

    Can someone advise me on how I could subtract the string from the filename variable from the string in the directory

    &#xA;

    My code :

    &#xA;

    @echo off&#xA;SETLOCAL ENABLEDELAYEDEXPANSION&#xA;set filetype=.flac&#xA;for /R %%a in ("*%filetype%*") do (&#xA;    set directory=%%a&#xA;    set filename=%%~na%filetype%&#xA;    set convdir=!directory:%filename%=!&#xA;    echo !convdir!&#xA;    pause&#xA;    ffmpeg -i "%%a" "convdir%%~na.wav"&#xA;    echo Converted %%a&#xA;)&#xA;echo Convertion Done!&#xA;pause&#xA;

    &#xA;

  • avcodec/dpx : Fix B&W film scans from Lasergraphics Inc

    7 décembre 2020, par Harry Mallon
    avcodec/dpx : Fix B&W film scans from Lasergraphics Inc
    

    Signed-off-by : Harry Mallon <harry.mallon@codex.online>

    • [DH] libavcodec/dpx.c