Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (79)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

  • Action Script - Pass Pause/Break key to native process

    1er août 2014, par user341931

    I’m using FMPEG to process some videos within an air application. I’m using a nativeprocess to pass the relevant arguments to FFMPEG/the command line. I want to be able to pause the process at certain times, and continue a little while later. In the command line pressing the pause/break key pauses the processing and then pressing enter restarts it. But I can’t find a way to encode the Pause/Break key, and then pass it to the the nativeprocess.

    Thanks in advance for any help.

  • doc : add script to compute texi files dependencies

    28 mai 2013, par Stefano Sabatini
    doc : add script to compute texi files dependencies
    

    Replace the inline awk script with a Perl script which tracks the
    dependencies recursively.

    This allows to correctly track dependencies for files including files
    with a second level include (for example : ffmpeg-devices.texi ->
    devices.texi -> outdevs.texi).

    This also adds a dependency on perl for computing the dependencies, which
    should not be a problem since perl is already required all the way for
    building documentation.

    This is a variant of commit 628ceac6526724d35cb390cc1f88344f4ea22eb4
    which was reverted due to out-of-tree build failure.

    • [DH] configure
    • [DH] doc/Makefile
    • [DH] doc/texidep.pl
  • How to encode ffmepg for jwplayer script which script read pass php file ?

    25 décembre 2013, par Sarun Prasomsri

    I have encoded my video use this command.

    $encode_comand="ffmpeg -i  $input_path -ac 1 -ab 128k -y -vcodec libx264 -vpre ultrafast -g 30 -r 30 -crf 22 $target_path &";

    exec($encode_comand);

    And it work for script below

       echo '
                   <div style="margin:0px auto; text-align:center; width:auto; display:blog;" class="vdoplayer">JW Player goes here</div>
                   <code class="echappe-js">&lt;script type=&quot;text/javascript&quot; src=&quot;http://stackoverflow.com/feeds/tag/jwplayer/jwplayer.js&quot;&gt;&lt;/script&gt;

    &lt;script type=&quot;text/javascript&quot;&gt;jwplayer.key=&quot;OOD7GkWbyNXOL6MbstF2Sa/YrQPgtNUPqxm5NA==&quot;;&lt;/script&gt;

    &lt;script type=&quot;text/javascript&quot;&gt;<br />
                                   jwplayer(&quot;mediaplayer&amp;#39;.&quot;11111&quot;.&amp;#39;&quot;).setup({<br />
                                   flashplayer: &quot;jwplayer/jwplayer.flash.swf&quot;,<br />
                                   file: &quot;$video_file&quot;,                            <br />
                                   width: &quot;&amp;#39;.$width.&amp;#39;&quot;,<br />
                                   height: &quot;&amp;#39;.$height.&amp;#39;&quot;,<br />
                                   stretching: &quot;uniform&quot;,<br />
                                   type: &quot;mp4&quot;,<br />
                                   skin: &quot;jwplayer/jwplayer-skins-free/six.xml&quot;,<br />
    <br />
                           });<br />
                   &lt;/script&gt;

    '
    //$video_file="http://myhost.com/project/files/1/video/file3.mp4" ;

    But After I chang script

    echo &#39;
               <div style="margin:0px auto; text-align:center; width:auto; display:blog;" class="vdoplayer">JW Player goes here</div>
               <code class="echappe-js">&lt;script type=&quot;text/javascript&quot; src=&quot;http://stackoverflow.com/feeds/tag/jwplayer/jwplayer.js&quot;&gt;&lt;/script&gt;

    &lt;script type=&quot;text/javascript&quot;&gt;jwplayer.key=&quot;OOD7GkWbyNXOL6MbstF2Sa/YrQPgtNUPqxm5NA==&quot;;&lt;/script&gt;

    &lt;script type=&quot;text/javascript&quot;&gt;<br />
                               jwplayer(&quot;mediaplayer&amp;#39;.&quot;11111&quot;.&amp;#39;&quot;).setup({<br />
                               flashplayer: &quot;jwplayer/jwplayer.flash.swf&quot;,<br />
                               file: &quot;readfile.php&quot;,                            <br />
                               width: &quot;&amp;#39;.$width.&amp;#39;&quot;,<br />
                               height: &quot;&amp;#39;.$height.&amp;#39;&quot;,<br />
                               stretching: &quot;uniform&quot;,<br />
                               type: &quot;mp4&quot;,<br />
                               skin: &quot;jwplayer/jwplayer-skins-free/six.xml&quot;,<br />
                               abouttext: &quot;project&quot;,<br />
                               aboutlink: &quot;project&quot;,<br />
                       });<br />
               &lt;/script&gt;

    '

    It not work for my video encode,But i try video that not encode it work.

    Video
    Dimension : 853 x 840
    codec : H.264
    Framerate : 30 frames per second
    Bitrate 408 kbps
    Audio
    codec : MPEG-4 AAC
    channels : Stero
    Sample rate : 44100 Hz ์
    Bitrate : N/A

    Readfile.php that have function read file

    &lt;?php
       $filename= &#39;http://www.longtailvideo.com/jw/upload/bunny.mp4&#39;; //can read
       $video_file = "http://myhost.com/project/files/1/video/file3.mp4";
       //cannot read Same file as script below

       if (file_exists($video_file)) { ob_clean(); flush(); };
       header(&#39;Content-Type: video/mp4&#39;);
       header(&#39;Content-Disposition: attachment;filename=file.mp4&#39;);
       readfile($video_file);
       ?>

    Thank you