Recherche avancée

Médias (91)

Autres articles (108)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • avconv : make -aspect work with streamcopy

    26 mai 2013, par Anton Khirnov
    avconv : make -aspect work with streamcopy
    
    • [DBH] avconv.c
    • [DBH] avconv_opt.c
  • dca : change the core to work with integer coefficients.

    17 décembre 2015, par Alexandra Hájková
    dca : change the core to work with integer coefficients.
    

    The DCA core decoder converts integer coefficients read from the
    bitstream to floats just after reading them (along with dequantization).
    All the other steps of the audio reconstruction are done with floats
    which makes the output for the DTS lossless extension (XLL)
    actually lossy.
    This patch changes the DCA core to work with integer coefficients
    until QMF. At this point the integer coefficients are converted to floats.
    The coefficients for the LFE channel (lfe_data) are not touched.
    This is the first step for the really lossless XLL decoding.

    • [DBH] libavcodec/dca.h
    • [DBH] libavcodec/dcadec.c
    • [DBH] libavcodec/dcadsp.c
    • [DBH] libavcodec/dcadsp.h
    • [DBH] libavcodec/fmtconvert.c
    • [DBH] libavcodec/fmtconvert.h
    • [DBH] tests/fate/audio.mak
  • ffmpeg. I want to connect pictures in a video. Does not work

    2 juillet 2023, par Alexander

    I use

    


    ffmpeg -f -i -r 24 -vcodec mjpeg -y test.mov

    


    It's in python code

    


    cmd = 'ffmpeg -f image2 -i '
cmd += ' '.join([f'{i}' for i in jpg_list])
cmd += ' -r 24 -vcodec mjpeg'
cmd += f' -y {first_secv}.mkv'


    


    I need codec mjpeg, 24 frames.