Recherche avancée

Médias (91)

Autres articles (71)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5449)

  • FFMPEG : how to include a splash screen ?

    4 juin 2017, par porton

    Having a video file, I want to add at its beginning and end a JPEG file to be shown a few (say 10) seconds.

    The time the image is shown should not be subtracted from the "main" video time. Instead the length of the video should be increased for the period the images are shown.

    How to do this with FFMPEG ?

    The suggestions how to make it fade in/out or to do other graphical effects are appreciated.

  • High Quality Screen Capture with FFmpeg

    18 novembre 2015, par plumzl

    I’m trying to figure out a command for high quality screen capture on REHL.

    I have tried various options, but none really worked. The quality is not good enough. I’m quite new to ffmpeg and doesn’t quite understand all the different flags. So any help would be appreciated !

    The commands I have tried :

    ffmpeg -y -f x11grab -r 30 -s 1920x1080 -i :0.0+0,0 -vcodec libx264 -strict -2 -b:v 16M output.mov

    The first command I tried. The weird thing is it doesn’t seem to preserve the bitrate specified -b:v 16M. The output video’s bitrate is only 2mb/s. Is that not the correct way to specify bitrate when doing screen capture ?

    ffmpeg -f x11grab -s 1920x1080 -r 30 -i :0.0 -qscale 0 -vcodec huffyuv output.mov

    The huffyuv codec is supposed to be lossless, but the quality doesn’t seem to be any better than the libx264 output.

    ffmpeg -f x11grab -r 30 -s 1920x1080 -i :0.0+0,0 -vcodec copy -pix_fmt yuv420p -qscale 0 -an output.mkv
    ffmpeg -f rawvideo -pix_fmt yuv420p -s:v 1920x1080 -r 30 -i output.mkv -an -c:v libx264 -qscale 0 result.mov

    I’m even trying to capture rawvideo and then convert it to libx264 codec viedeo. But the output is corrupted.

    I’m using the version of ffmpeg that’s built on April 23rd this year. It doesn’t have the preset like -vpre lossless_ultrafast which I see mentioned in a lot posts.

    Edit :

    After more research, this is the command I end up using. I have to use h264 codec and yuv420p as pixel_fmt since I need to be able to play the quicktimes using quicktime.

    ffmpeg -y -f x11grab -framerate 30 -video_size 1920x1080 -i :0.0+0,0 -c:v libx264 -pix_fmt yuv420p -qp 0 -preset ultrafast output.mov

    The quality doesn’t seem to be much improved even though -qp is set to 0. But it could also because of the rgb conversion to yuv color space according to this post.

    https://trac.ffmpeg.org/wiki/Encode/H.264

  • FFMPEG - Can i repeat input video to fix screen

    23 juin 2017, par DannyTuan

    I want repreat-x input video with output size.

    EX :

    - Input video : 320x720

    - Output Video : 1280x720

    - Image Demo : As shown below

    local/cache-vignettes/L300xH130/k7OOfpng-b62b621-4f049.png?1498507989

    What ffmpeg code can do it ?