Recherche avancée

Médias (91)

Autres articles (24)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (6925)

  • vf_drawtext : move "static const" before "struct".

    31 août 2014, par Reimar Döffinger
    vf_drawtext : move "static const" before "struct".
    

    This is consistent with all other occurrences.

    Signed-off-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>

    • [DH] libavfilter/vf_drawtext.c
  • Revision c40a968e13 : Merge "Revert "Remove Wextra warnings from vp9_sad.c""

    2 juin 2014, par Frank Galligan

    Changed Paths :
     Modify /vp9/common/vp9_rtcd_defs.pl


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_rdopt.c



    Merge "Revert "Remove Wextra warnings from vp9_sad.c""

  • Why this function not working, i am try to add watermark in Video for download [closed]

    13 août 2020, par Ajay Kumar

    I am trying to download Video with watermark but this function not working why

    &#xA;

    SHOW massege error. Video file exist in temp folder with watermark but not download

    &#xA;

    Failed to download Video if this function enabled and if disabled Video are download successful

    &#xA;

    function waterMark($videoURL,$username)&#xA;{&#xA;&#xA;&#xA;    require &#x27;video_editor/vendor/autoload.php&#x27;;&#xA;&#xA;    $ffmpeg = FFMpeg\FFMpeg::create(array(&#xA;        &#x27;ffmpeg.binaries&#x27;  => ffmpeg_lib,&#xA;        &#x27;ffprobe.binaries&#x27; => ffprobe_lib,&#xA;        &#x27;timeout&#x27;          => 8600, // The timeout for the underlying process&#xA;        &#x27;ffmpeg.threads&#x27;   => 42,   // The number of threads that FFMpeg should use&#xA;    ), null);&#xA;    $ffmpeg_string = ffprobe_lib;&#xA;&#xA;&#xA;    $tempFile=rand().time();&#xA;    $outputFile=&#x27;tmp/&#x27;.$tempFile.&#x27;.mp4&#x27;;&#xA;&#xA;    $video = $ffmpeg->open($videoURL);&#xA;&#xA;    $watermarkPath = watermark_Path;&#xA;    $video&#xA;        ->filters()&#xA;        ->watermark($watermarkPath, array(&#xA;            &#x27;position&#x27; => &#x27;absolute&#x27;,&#xA;            &#x27;x&#x27; => 15,&#xA;            &#x27;y&#x27; => 30,&#xA;        ));&#xA;    $text="@".$username;&#xA;    $command = "text=&#x27;$text&#x27;: fontcolor=white:fontfile=OpenSans-Bold.ttf: fontsize=18: x=20: y=70:";&#xA;    $format = new FFMpeg\Format\Video\X264();&#xA;    $format->setAudioCodec("aac");&#xA;&#xA;    try&#xA;    {&#xA;&#xA;            $video->filters()->custom("drawtext=$command");&#xA;            $video->save($format, $outputFile);&#xA;&#xA;            $array_out = array();&#xA;            $array_out[] =&#xA;            array(&#xA;                "download_url" => checkVideoUrl($outputFile)&#xA;            );&#xA;&#xA;            $output=array( "code" => "200", "msg" => $array_out);&#xA;            print_r(json_encode($output, true));&#xA;&#xA;    }&#xA;    catch(Exception $e)&#xA;    {&#xA;            echo $e->getMessage();&#xA;            die;&#xA;    }&#xA;&#xA;&#xA;}&#xA;

    &#xA;

    Please solve this isu

    &#xA;

    Why this function not working, i am try to add watermark in Video for download

    &#xA;