Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (63)

  • 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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (6837)

  • How to view the commands while making FFmpeg ?

    28 décembre 2011, par Saptarshi Biswas

    When I make ffmpeg, I can see following lines

    CC  ffmpeg.o
    LD  ffmpeg_g
    CP  ffmpeg
    STRIP   ffmpeg

    What is a quick way to find the commands for CC, LD etc. with as less modification to the Makefile ?

  • Image orientation chaning while making image from a video using ffmpeg [on hold]

    19 janvier 2016, par rakeshp

    I am making image thumbnails from video on Linux, but for some videos the orientation is changing and not coming as per the original video orientation. Here is my code.

    ffmpeg -itsoffset 4 -i test_video.mov -ss 00:00:01.000 -vf scale=-1:240 -vframes 1 test_image.png

    I tried with multiple options like adding "-vf transpose=1 " to the above code, but still it didn’t work for me.Can anyone help me here.

  • Making progress bar with FFmpeg duration value

    11 novembre 2014, par user2978381

    I am mainly a back-end developer. I have rarely used javascript. But for real time update now I have to use javascript, ajax, jquery or something like that.

    My php script outputs this value "100%" at the end of the conversion.

    echo "Progress: " . $progress . "%";

    The $progress variable actually holds numeric data like 10 and I want to use this value for making progress bar. The value of the $progress variable changes every second and I need to capture this value.

    So if I want to implement this value in the following html file what will I do actually ?

    <code class="echappe-js">&lt;script src=&quot;//code.jquery.com/jquery-1.10.2.js&quot;&gt;&lt;/script&gt;

    &lt;script src=&quot;//code.jquery.com/ui/1.11.2/jquery-ui.js&quot;&gt;&lt;/script&gt;

    &lt;script&gt;<br />
    $(function() {<br />
     var progressbar = $( &quot;#progressbar&quot; ),<br />
       progressLabel = $( &quot;.progress-label&quot; );<br />
    <br />
     progressbar.progressbar({<br />
       value: false,<br />
       change: function() {<br />
         progressLabel.text( progressbar.progressbar( &quot;value&quot; ) + &quot;%&quot; );<br />
       },<br />
       complete: function() {<br />
         progressLabel.text( &quot;Complete!&quot; );<br />
       }<br />
     });<br />
    <br />
     function progress() {<br />
       var val = progressbar.progressbar( &quot;value&quot; ) || 0;<br />
    <br />
       progressbar.progressbar( &quot;value&quot;, val + 2 );<br />
    <br />
       if ( val &lt; 99 ) {<br />
         setTimeout( progress, 80 );<br />
       }<br />
     }<br />
    <br />
     setTimeout( progress, 2000 );<br />
    });<br />
    &lt;/script&gt;
    Loading...