Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (33)

  • 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.

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

Sur d’autres sites (6248)

  • Revision 244912d506 : Make build_inter_predictors static function Remove the function declaration fro

    7 août 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/common/vp9_reconinter.c


     Modify /vp9/common/vp9_reconinter.h



    Make build_inter_predictors static function

    Remove the function declaration from vp9_reconinter.h file.

    Change-Id : I193562151b69ece19b9ee2efa1a791fe2522cca0

  • Revision 9b84d11356 : Move configure_arnr_filter function This function is now called from configures

    17 avril 2013, par Adrian Grange

    Changed Paths : Modify /vp9/encoder/vp9_firstpass.c Modify /vp9/encoder/vp9_onyx_if.c Modify /vp9/encoder/vp9_temporal_filter.c Modify /vp9/encoder/vp9_temporal_filter.h Move configure_arnr_filter function This function is now called from configures the ARNR filter so it belongs with the other (...)

  • How to use system command in php ?

    11 juin 2019, par flash

    I am working on a PHP code as shown below in which conversion of mp4 into mp3 is happening at Line B.

    I have added if block after system command to print Conversion Completed on the webpage once the conversion is complete but it doesn’t seem to work.

    Php code :

    if (isset($_POST['id']))
    {
       for($i=0; $i / Line A        

                   system('ffmpeg -i ' . $filePath . ' -map 0:2 -ac 1 ' . $destination_dir . DS . $parts['filename'] . '.mp3', $result);  // Line B

                   if($result)
                   {
                       echo "Conversion Completed";
                   }

               }
           }
       }
    }

    Problem Statement :

    I am wondering what changes I should make in the PHP code above so that once the conversion is complete ; on the webpage, it should print Conversion Completed.