Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (75)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (10310)

  • fftools/ffmpeg_enc : avoid breaking exactly integer timestamps in vsync code

    28 mai 2023, par Anton Khirnov
    fftools/ffmpeg_enc : avoid breaking exactly integer timestamps in vsync code
    

    The code will currently add a small offset to avoid exact midpoints, but
    this can cause inexact results when a float timestamp is exactly
    representable as an integer.

    Fixes off-by-one in the first frame duration in multiple FATE tests.

    • [DH] fftools/ffmpeg_enc.c
    • [DH] tests/ref/fate/apng-osample
    • [DH] tests/ref/fate/film-cvid
    • [DH] tests/ref/fate/filter-concat-vfr
    • [DH] tests/ref/fate/gif-gray
  • ffmpeg hls master playlist generation

    15 avril 2019, par diS

    With the recent ffmpeg master branch(commit 7fcbeb) we can generate the master playlist using

    -master_pl_name

    option. But I am unable to generate the master playlist with different profiles. Tried using

    -var_stream_map

    how can we use these options for creating master playlist with different profiles ?

    I am trying with below ffmpeg command :

    # ./ffmpeg  -y -loglevel error -err_detect careful -analyzeduration 8000000 -probesize 4000000 -rtbufsize 300000 -flush_packets 0 -fflags +genpts+discardcorrupt -f mpegts -i test.ts -c copy -var_stream_map "v:0,agroup:aud_high a:0,agroup:aud_high" -ignore_unknown -flags global_header -f hls -master_pl_name master.m3u8 -master_pl_publish_rate 32 -hls_time 4 -hls_list_size 40 -hls_flags delete_segments /webserver/video0_%v.m3u8
  • Vertically stack two images, draw a box on the bottom image then write multiline text in that box

    31 août 2020, par Sarmad S.

    I am trying to make a video from two images, where the two images should be vertically stacked. This is easy and can be done with the vstack command. I also managed to write text on the bottom image with the drawtext command. However I want to draw a blue box that covers half of the bottom image (the bottom part of the image) and write the text in that blue box.

    


    How do I go about doing so ?

    


    My code so far :

    


    ffmpeg -loop 1 -i image1 -i image2 -c:v libx264 -t 3 -pix_fmt yuv420p -filter_complex "[1]drawtext=my-font.otf: text='some multiline text': fontcolor=white: fontsize=50: x=(w-text_w)/2: y=(h-text_h)/2[v1], drawbox; [0][v1]vstack" -s 1080:1920 output.mp4"


    


    I also want to zoom slowly in the images (not the box or the text). Anyone can help me connect things ?

    


    I am able to zoom, drawbox, write text etc, but not able to combine them together.