Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (69)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (11847)

  • Revision 97da8b8c33 : Minor rate control refactoring and experiments. Some minor refactoring code rel

    25 février 2013, par Paul Wilkins

    Changed Paths : Modify /vp9/encoder/vp9_firstpass.c Modify /vp9/encoder/vp9_onyx_if.c Modify /vp9/encoder/vp9_onyx_int.h Modify /vp9/encoder/vp9_ratectrl.c Modify /vp9/encoder/vp9_ratectrl.h Minor rate control refactoring and experiments. Some minor refactoring code relating to estimates (...)

  • Revision dbfc3692eb : seeing a 10x slowing down, revert now for investigation Revert "Fix a problem o

    2 juin 2014, par Yaowu Xu

    Changed Paths :
     Modify /vp9/encoder/vp9_encoder.c



    seeing a 10x slowing down, revert now for investigation

    Revert "Fix a problem of using an uninitialized parameter"

    This reverts commit 538af7db5ffe2ab560511a3bc0ae74dae9316c14

    Change-Id : I071aa9b7068ef515abb8ae9584df15067706ccb5

  • Problem with Getting Output with Accents When Using PHP exec Command with ffprobe

    25 septembre 2020, par user5919866

    I am retrieving the output of ffprobe with PHP exec command to get information from mp3 files. The problem is that if there is any text in the output containing accents or apostrophes, then I don't get those displayed.

    


    I am running PHP 7.3.19 on Debian 10. The output locale -a from the commandline is :

    


    C
C.UTF-8
en_US.utf8
POSIX


    


    I have tried several things in my PHP script such as :

    


    $cmd = 'LANG=\"en_US.UTF8\" ffprobe -loglevel error -show_entries format=duration:format_tags -of json "' . $FinalFilenamePath . '"';
exec($cmd, $output, $return);


    


    and :

    


    $cmd = 'env -i ffprobe -loglevel error -show_entries format=duration:format_tags -of json "' . $FinalFilenamePath . '"';
exec($cmd, $output, $return); 


    


    and :

    


    $cmd = 'LC_ALL=en_US.UTF-8 ffprobe -loglevel error -show_entries format=duration:format_tags -of json "' . $FinalFilenamePath . '"';
exec($cmd, $output, $return);


    


    So, how can I be sure that when I run the ffprobe command via PHP's exec, I can display characters such as accents, apostrophes, etc.