Recherche avancée

Médias (91)

Autres articles (68)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (8045)

  • Rescaling and slowing down a movie at the same time with ffmpeg

    21 décembre 2016, par ejl62

    I would like with ffmpeg to slow down a movie I am creating using the flag :

    -filter:v "setpts=2.0*PTS"

    However the height of my still images is not divisible by 2, so to avoid the error : height not divisible by 2 (1238x833), I am using the flag :

    -vf scale="trunc(iw/2)*2:trunc(ih/2)*2"

    (I also tried -vf scale=1238:-2).

    When I do this the film is generated but it isn’t slowed down, like if the -filter:v "setpts=2.0*PTS" wasn’t there.

    Is there something particular to do in order to have both option working at the same time ?

    Here is the complete command I am using :

    ffmpeg -an -i ./movie/cphmd1.%05d.ppm -vcodec libx264 -pix_fmt yuv420p -b:v 5000k -r 24 -crf 18 -filter:v "setpts=2.0*PTS" -vf scale="trunc(iw/2)*2:trunc(ih/2)*2" -preset slow -f mp4 cphmd1_slower.mp4

    Many thanks in advance !

  • FFmpeg : real-time buffer[ ] [input] too full or near too full (101% of size : 3041280 [rtbufsize parameter]) frame dropped

    5 janvier 2017, par lostin2010

    I use the library of ffmpeg to decode stream from [TTQ HD Camera] and encode it to a rtmp stream.
    but I receive a lot of warnings like the picture below.
    i try to set qmin and qmax , it seems a little better. but still not totally resolve the problem.

    encoder_context->qmin = 10;
    encoder_context->qmax = 51;

    who knows this is why ?

    [dshow @ 04bfc640] real-time buffer [TTQ HD Camera] [video input] too full or near too full (101% of size: 3041280 [rtbufsize parameter])! frame dropped!

    enter image description here

  • doc : clarify option on looping infinitely in movie filter

    2 février 2017, par Werner Robitza
    doc : clarify option on looping infinitely in movie filter
    

    Clarify that setting loop=0 is required to make the stream loop infinitely, rather than saying that a value "less than 1" is needed.

    Signed-off-by : Lou Logan <lou@lrcd.com>

    • [DH] doc/filters.texi