Recherche avancée

Médias (91)

Autres articles (18)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (3254)

  • How to load/dump a raw video data into AvFrame structure pointer by using ffmpeg api function

    4 octobre 2016, par Harikrishna

    I want to write an application for encoding raw (yuv) video file data by using ffmpeg api functions instead of using a command.

    So for this, I need to use avcodec_encode_video2 function to encode raw video data and before calling this function all required configurations and video data should be fill on the AVCodecContext and AvFrame structure pointers.

    Can anyone guide me that how can I load this raw video data on AvFrame by using ffmpeg api function ?

    Thank you in advance.

  • FFMpeg : clipping rectangle for drawtext

    6 mai 2019, par rcpinheiro

    I’m trying to overlay a caption inside a box (or graphic) over a video. The caption is always a one-liner and starts always at the same coordinates and time. The problem is when the caption is very big and falls outside the desired clipping rectangle.

    Here’s a sample (w/o clipping rectangle) :

    ffmpeg -i input.mp4 -vf "drawbox=x=40:y=620:w=1200: h=80:color=#000080@0.8:t=fill [first];\
    [first] drawtext=fontfile=font.ttf: text='Some text in one line that could be very big':x=60:y=640:fontsize=40:fontcolor=#f0f0f0@0.6 [out]" \
    -vcodec libx264 -crf 27 -preset ultrafast -strict -2 output.mp4

    Is there a way to crop the caption without using the subtitle filter ?
    Thanks in advance !

  • ffmpeg drawtext filename in folder files

    18 avril 2020, par Nikolas Tenorio Osorio

    i want to draw part of the text in my filename to the video file but when i try to putit the loop they multiply and draw the first filename

    



    the filename's have this pattern

    



    123123213__nombre1_32213123_323123.mp4

    



    @echo off
setlocal enableextensions disabledelayedexpansion

for /r  %%g in (*.mp4) do (

    setlocal enabledelayedexpansion
    (for /f "tokens=2 delims=_" %%b in ('dir /b *.mp4') do (

       ffmpeg -i %%g -vf "drawbox=y=(ih/PHI)+312:color=black@0.4:width=iw:height=35:t=fill, drawtext=text='Insta\:\@%%b':fontcolor=white:fontsize=24:x=(w-tw)/2:y=(h/PHI)+300+th" outdir\%%~ng.mp4


    



    pd : another error is when i have a name whit underscore the file make error