Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (38)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (3768)

  • lavc/movtextenc : add option to scale fontsize with height

    5 avril 2020, par John Stebbins
    lavc/movtextenc : add option to scale fontsize with height
    

    If the video dimensions are different than the ASS play_res then the
    font sizes need to be adjusted to get the same apparent render size.

    Signed-off-by : Philip Langdale <philipl@overt.org>

    • [DH] libavcodec/movtextenc.c
  • ffmpeg - adding Dynamic logo & random position watermark to video ?

    9 août 2021, par JackS

    I am making a tutorial for sending through mail to my uses, and to avoid piracy distribution I thought to put watermarks (logo.png) at random places at interval on the videos.

    &#xA;

    I tried using the command from ffmpeg - Dynamic letters and random position watermark to video ? :

    &#xA;

    ffmpeg -i input.mp4 \&#xA;-vf \&#xA;"drawtext=fontfile=font.ttf:fontsize=80:fontcolor=yellow@0.5:text=&#x27;studentname&#x27;: \&#xA; x=if(eq(mod(t\,30)\,0)\,rand(0\,(W-tw))\,x): \&#xA; y=if(eq(mod(t\,30)\,0)\,rand(0\,(H-th))\,y)" \&#xA;-c:v libx264 -crf 23 -c:a copy output.mp4&#xA;

    &#xA;

    But it gave me error :

    &#xA;

    [NULL @ 0x55c812525600] Unable to find a suitable output format for &#x27;\&#x27;&#xA;\: Invalid argument&#xA;

    &#xA;

  • Combien audio input with infinite loop sound on FFMpeg for rPi

    6 mars 2021, par FoxFr

    Someone can say me how its the best way to combine (mixing) the sound input from a Jack with an infinite loop sound on FFMpeg ? i seen many thing about this but still crashed my test

    &#xA;

    Goal ? use the infinite loop for a bed, with a voice from mic (with jack) over the bed&#xA;the ultimate will be have a parameter for the volume of input jack & bed

    &#xA;

    So clear ?

    &#xA;

    ffmpeg \&#xA;-i /dev/video0 \&#xA;-i /dev/video2 \&#xA;-stream_loop -1 -re -i "/home/pi/videopi/bed.mp3" \&#xA;-filter_complex "[0][1]overlay=enable=&#x27;lt(mod(t,60),30)&#x27;[v];[v]drawtext=textfile=/home/pi/videopi/gps.txt:reload=1:x=30:y=100:fontfile=OpenSans.ttf:font$&#xA;-map "[v]" \&#xA;-map 2:a \&#xA;-c:v libx264 -b:v 4000k -maxrate 4000k -bufsize 8000k -g 50 -c:a aac \&#xA;-f flv rtmp://a.rtmp.youtube.com/live2/XXXXXXXXXX&#xA;

    &#xA;

    Many many thkx

    &#xA;