Recherche avancée

Médias (91)

Autres articles (75)

  • 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 ;

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

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

Sur d’autres sites (10323)

  • FFMPEG - Moving text to appear every 'X' Seconds

    23 septembre 2015, par Kevin

    This is a ffmpeg command for moving text (left to right)

    ffmpeg -i input.mp4 -vf drawtext="fontfile=/path/to/fonts/FreeSans.ttf:text='Hello World':fontcolor=white@1.0:fontsize=16:y=h-line_h-100:x=(2*n)-tw" -codec:v libx264 -codec:a copy output.mp4

    And I would like to know how to make the moving text to start after ’X’ seconds and appear every ’X’ seconds ?

  • FFMPEG - Moving text to appear every 'X' Seconds

    9 octobre 2018, par Kevin

    This is a ffmpeg command for moving text (left to right)

    ffmpeg -i input.mp4 -vf drawtext="fontfile=/path/to/fonts/FreeSans.ttf:text='Hello World':fontcolor=white@1.0:fontsize=16:y=h-line_h-100:x=(2*n)-tw" -codec:v libx264 -codec:a copy output.mp4

    And I would like to know how to make the moving text to start after ’X’ seconds and appear every ’X’ seconds ?

  • Setting bitrate of video in ffmpeg c++

    9 août 2017, par ngân phạm

    Firstly, I know this is an old question. But I hope someone can help.
    I use FFmpeg to record video from a RTSP stream (the codec is H.264). It works. But I face a problem with the bitrate value. First, I set bitrate like below, but not work :

    AVCodecContext *m_c;
    m_c->bit_rate = bitrate_value;

    Following this question I can set bitrate manually with this command

    av_opt_set(m_c->priv_data, "crf", "39", AV_OPT_SEARCH_CHILDREN);

    But I have to test serveral times to choose value ’39’, which create acceptable video quality. It’s hard to do again if I use another camera setting (image width, height,...).
    I hope there is a way to set bitrate more easily, and adaptively. Could someone help ?