Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (111)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (5925)

  • Play video overlay over video not working in ffmpeg

    24 décembre 2017, par Sumit Marwha

    I am trying to play video over another video using ffmpeg. When i am trying to play video from starting then overlay video plays. But if i try to overlay video from n seconds it doesn’t work

    ffmpeg -i input.mp4 -i overlay.mp4
    -filter_complex [1:v]scale=920:920[out],[out][0]overlay=0:0:enable='between(t\,4\,8)'[out]
    -map [out] output.mp4

    If i change between(t\,4\,8) to between(t\,0\,4) then overlay video works normally. It is not working for between(t\,4\,8). Please help how to solve it

  • FFMPEG- how to set presentation timestamp of a second video while merging a second video side-by-side with a first video

    14 octobre 2020, par Sankalpa Sarkar

    I was trying to merge a second video into a first video, side-by-side in a stacked fashion as a self-interest work. The twist is the video is a recording of a video call, where a second user might join at a later stage than the first user. The cumulative recording of the video call must reflect that the second user joins at a later stage than the first user. For this, I am using this code :

    &#xA;

    DIFF=$(($start_ts-$BASEts))&#xA;DIFFms=`echo "scale=0;$DIFF/1000" | bc`&#xA;DIFFs=`echo "scale=4;$DIFF/1000000" | bc`&#xA;ffmpeg -i $a.webm -i b.webm -filter_complex \&#xA;    "[0]pad=2*iw:1*ih[l];[1]setpts=PTS-STARTPTS&#x2B;$DIFFs/TB[1v]; [l][1v]overlay=x=W/2[v]; \&#xA;    [1]adelay=$DIFFms|$DIFFms[1a]; \&#xA;    [0][1a]amix=inputs=2[a]" \&#xA;    -map "[v]" -map "[a]" -vcodec libvpx -cpu-used -5 -deadline realtime finalOutput.webm&#xA;

    &#xA;

    However, the error being thrown here is :

    &#xA;

    [Parsed_setpts_1 @ 0x55ada9df1dc0] [Eval @ 0x7ffff35acb60] Undefined constant or missing &#x27;(&#x27; in &#x27;/TB&#x27;&#xA;[Parsed_setpts_1 @ 0x55ada9df1dc0] Error while parsing expression &#x27;PTS-STARTPTS&#x2B;/TB&#x27;&#xA;[AVFilterGraph @ 0x55ada9d6c2a0] Error initializing filter &#x27;setpts&#x27; with args &#x27;PTS-STARTPTS&#x2B;/TB&#x27;&#xA;Error initializing complex filters.&#xA;Invalid argument&#xA;

    &#xA;

    It is unable to read the $DIFFs variable at all, is what I figured. Can anybody help me out here ?

    &#xA;

  • Add video endscreen before the video ends 30 seconds use ffmpeg

    4 septembre 2020, par rinofcan

    I have 1 video viral and 30 video for fun. They have different durations.How to overlay "Video Viral" intro end 30 video ( before the video ends 30 seconds )

    &#xA;

    example image below :

    &#xA;

    enter image description here

    &#xA;

    Please give me a solution using ffmpeg and ffprobe in one line cmd

    &#xA;