Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (110)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (14112)

  • How to add long text ffmpeg video

    13 février 2023, par Joe Cola

    I tried adding text in the middle of the video, but the results weren't what I wanted. namely long text out of line, how to make long text automatically into a new line below ?

    


    ffmpeg -i input.mp4 -vf "drawtext=fontfile=/path/to/font.ttf:text='I tried adding text in the middle of the video, but the results are not as desired,':fontcolor=white: fontsize=24:box=1:boxcolor=black@0.5:boxborderw=5:x=(w-text_w)/2:y=(h-text_h)/2" -codec:a copy output.mp4

    


    i used that command, and the output like this

    


    output video

    


    Please help

    


    please help my problem

    


  • ffmpeg combining live video from 3 cameras

    18 juillet 2022, par annr

    I have 3 USB cameras streaming video at a specific resolution. I am trying to merge the videos together as an hstack and display using ffplay.

    


    This is the command I am using :

    


    ffmpeg -f dshow -pix_fmt uyvy422 -video_size 1280x2160 -i video="CAM_0" -f dshow -pix_fmt uyvy422 -video_size 1280x2160 -i video="CAM_1" -f dshow -pix_fmt uyvy422 -video_size 1280x2160 -i video="CAM_2" -filter_complex hstack=3 -f nut - | ffplay -


    


    The USB Camera system will only start video stream only when 3 cameras are enabled (or started by ffmpeg). However when I am using the above command, ffmpeg starts CAM_0 and waits for data. As a result CAM_1 and CAM_2 are not started and video stream does not start.

    


    Is there any way where I can start all 3 inputs simultaneously using ffmpeg and then merge them together using hstack ?

    


    Thanks !

    


  • libavutil/eval : Add round function to expression parser

    6 juin 2017, par Kevin Mark
    libavutil/eval : Add round function to expression parser
    

    We have floor, ceil, and trunc. Let's add round.

    Signed-off-by : Kevin Mark <kmark937@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/utils.texi
    • [DH] libavutil/eval.c