Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (51)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

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

Sur d’autres sites (6349)

  • Revision b04d766800 : Use small transform size in non-rd real-time mode In non-rd real-time mode, cho

    30 mai 2014, par Yunqing Wang

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_speed_features.c


     Modify /vp9/encoder/vp9_speed_features.h



    Use small transform size in non-rd real-time mode

    In non-rd real-time mode, choosing smaller transform size in
    encoding gives better video quality and good speed gain than
    choosing larger transform size. This patch set tx size search
    method to ALLOW_8X8, which is better than using 4x4 or other
    larger sizes.

    Borg tests on rtc set at speed 6 showed significant gain on quality.
    PSNR gain : 11.034% and SSIM gain : 15.466%.

    The speed gain is 5% - 12% for <720p clips, and 2% - 7% for
    720p clips.

    Change-Id : If4dc74ed2df359346b059f47fb73b4a0193ec548

  • Revision 1b556e1f9a : vp9_spatial_svc_encoder : Enable aq-mode for real-time mode. For real-time mode

    27 août 2015, par Marco

    Changed Paths :
     Modify /examples/vp9_spatial_svc_encoder.c



    vp9_spatial_svc_encoder : Enable aq-mode for real-time mode.

    For real-time mode (speeds >=5) enable aq-mode=3.

    Change-Id : Ib8b4ef7609bc30ac935742c8d27e8cd89933c6af

  • FFMPEG : Creating video using drawtext along with word wrap and padding

    11 octobre 2022, par Chaitanya Sai

    I'm working to create a video from text with drawtext filter. Output video i can see the text is overflowing instead of coming in new line.

    &#xA;&#xA;

    Is there any way i can archive word wrapping and also set the internal padding to video ?

    &#xA;&#xA;

    Below is the snippet I'm using to generate video from text

    &#xA;&#xA;

    ffmpeg.exe -f lavfi -i color=c=white:s=640x480:d=5.396 -vf "[in] drawtext=fontfile=font.ttf:fontsize=20:fontcolor=black:x=0&#x2B;0*print(tw):y=0&#x2B;0*print(th):text=&#x27;this is new whiteboard te&#x27;:enable=&#x27;between(t,6.634,6.818)&#x27;,drawtext=fontfile=font.ttf:fontsize=20:fontcolor=black:x=0&#x2B;0*print(tw):y=0&#x2B;0*print(th):text=&#x27;this is new whiteboard testing&#x27;:enable=&#x27;between(t,0.0,2.032)&#x27;,drawtext=fontfile=font.ttf:fontsize=20:fontcolor=black:x=0&#x2B;0*print(tw):y=0&#x2B;0*print(th):text=&#x27;this is new whiteboard testing no padding and the text is overflowing from the video frame check this  need to acheve word wrapping&#x27;:enable=&#x27;between(t,2.032,5.396)&#x27;"[out] -c:v libx264 -t 30 -crf 30 ../output.mp4&#xA;

    &#xA;&#xA;

    Output looks like this&#xA;enter image description here

    &#xA;