Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8289)

  • avcodec/mips : Fix a warnning of indentation not reflect the block structure.

    9 septembre 2019, par Shiyou Yin
    avcodec/mips : Fix a warnning of indentation not reflect the block structure.
    

    The indentation of code dose not reflect the if block structure in
    'apply_ltp_mips', and this will generate a warnning when build with
    '-Wall' or '-Wmisleading-indentation'.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mips/aacdec_mips.c
  • why video conversion from avi to mp4 in php using exec function not working ?

    28 avril 2019, par Amir farouk

    i tried to convert any video type to mp4 on the server because the html video tag dose not support any type except mp4. so i used exec function to convert the video on the server but it is not working.
    note :
    exec function is not in the disabled function in php.ini

    my code :

       &lt;?php
         if(isset($_POST['submit']))
         {
         $vidname=$_FILES["vid"]["name"];
         $videotype=$_FILES["vid"]["type"];
         $time = time();
         $vidname2=$time.$_FILES["vid"]["name"];

         move_uploaded_file($_FILES["vid"]["tmp_name"], 'videos/' . $time.$_FILES["vid"]["name"]);
         if($videotype!="video/mp4")
         {
             exec("ffmpeg -i videos/$vidname2 -an videos/$vidname2.mp4"); // Convert .avi to mp4
             unlink("videos/$vidname2");
         }
       }
       else
       {
           ?>
               <form method="post" action="" enctype="multipart/form-data">
                   <input type="file" />
                   <input type="submit" value="upload" />
               </form>
           &lt;?php
       }
    ?>

    screen shoot of the code

  • Split list of videos to chunks by silence in Python

    27 mai 2020, par JohnPython

    I have a list of 500 videos that I want split into small chunks by single words.

    &#xA;&#xA;

    I was thinking to split it by short silences between words.

    &#xA;&#xA;

    Process output is lots of short videos each contains one word.

    &#xA;&#xA;

    It would be great if silence length would be adjustable so it can extract words by various talking speech.&#xA;Process will run in Google Colab notebook&#xA;I tried FFMPEG with no success.

    &#xA;