Recherche avancée

Médias (91)

Autres articles (54)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

  • Merge commit ’a1c5cc429d99216406170eac7e8352860076d3e8’

    28 octobre 2013, par Michael Niedermayer
    Merge commit ’a1c5cc429d99216406170eac7e8352860076d3e8’
    

    * commit ’a1c5cc429d99216406170eac7e8352860076d3e8’ :
    lavc : don’t set AVFrame.pts to random numbers in decoders.

    Conflicts :
    libavcodec/mpeg4videodec.c

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

    • [DH] libavcodec/h261dec.c
    • [DH] libavcodec/ituh263dec.c
    • [DH] libavcodec/mpeg4videodec.c
  • aarch64 : Update the var2 functions to the new signature

    29 mai 2017, par Martin Storsjö
    aarch64 : Update the var2 functions to the new signature
    

    The existing functions could easily be used by just calling them
    twice - this would give the following cycle numbers from checkasm :

    var2_8x8_c : 4110
    var2_8x8_neon : 1505
    var2_8x16_c : 8019
    var2_8x16_neon : 2545

    However, by merging both passes into the same function, we get the
    following speedup :
    var2_8x8_neon : 1205
    var2_8x16_neon : 2327

    • [DH] common/aarch64/pixel-a.S
    • [DH] common/aarch64/pixel.h
    • [DH] common/pixel.c
  • MLT melt slideshow on Windows : unable to control output video length and problems with using wildcards

    10 novembre 2020, par Tjk

    I am using the following command within a batch script to, hopefully, eventually programmatically create simple video slideshows with transitions :

    &#xA;

    melt 131.jpg 132.jpg 133.jpg ttl=75 -attach crop center=1 -filter luma cycle=75 duration=25 -transition mix -consumer avformat:out.mp4 frame_rate_num=30 frame_rate_den=1&#xA;

    &#xA;

    Most of this command is an adaptation for Windows of this command on the MLT website blog (with the exception of the part that scales and transforms the image). For some reason when I run this, however, the output video file is 25 minutes long !

    &#xA;

    I have two main questions :

    &#xA;

    a. How do I properly control the duration of each image in the video ? I have experimented quite a bit with changing the parameters and I have a semi-decent understanding of what they all mean (I am a newbie to MLT but I figured that there's no way to do something like this easily in FFMPEG alone). The only way I have found to decrease the duration with any amount of control is to increase the output framerate to absurd numbers (which, of course, is not ideal as it's a massive waste of time and energy and still doesn't really solve the issue).

    &#xA;

    b. How do I use a wildcard to input all the .jpg files in a folder on Windows ? I tried adding *.jpg but that didn't work and I don't know how else to do it within a batch script (I tried using the following code to get the file names as a variable, but I wasn't able to get string concatenation working correctly because it only outputs the final file name)

    &#xA;

    set files=&#xA;for /r %%i in (*.jpg) do (&#xA;    echo %%i&#xA;    set files=%files% "%%i"&#xA;)&#xA;echo %files%&#xA;

    &#xA;

    Thank you for any suggestions !

    &#xA;