Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (92)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (12659)

  • file_exists() : open_basedir restriction in effect. File(/usr/bin/ffprobe) is not within the allowed path(s)

    2 septembre 2020, par arian

    after changing the value of open_basedir in php.ini in this path /usr/local/php73/lib/php.ini
to

    


    /home/admin/:/tmp/:/var/tmp/:/opt/alt/php73/usr/share/pear/:/dev/urandom:/usr/local/php73/lib/:/usr/local/php73/lib/:/usr/local/lib/php/:/usr/bin/ffprobe/:/usr/bin/ffmpeg/  


    


    It still does not work and I am trying to show php.ini in browser to check if these changes have been made, I see that it has not been added to the ini configuration.i see the changes for other conf like memory_limit after changing it's values but open_basedir not updated. How can this be fixed ?

    


  • Revision 5d0174bc02 : Skip AS detection for VS Visual Studio doesn't use the assembler in $PATH Chan

    12 décembre 2011, par Johann Koenig

    Changed Paths : Modify /build/make/configure.sh Skip AS detection for VS Visual Studio doesn't use the assembler in $PATH Change-Id : I169f8492127cbc1d256a2fb2e749cd970040ccc8

  • Why Video not saving given path using ffmpeg in android ?

    1er juillet 2021, par Dnyaneshwar Panchal

    I want to use ffmpeg to save video as given path in android.
I am using this command for saving the video but it doesn't work.
Where am I mistaken ?

    


    String[] command_try = new String[13];
    command_try[0] = "-i";
    command_try[1] = "/sdcard/Videos/Videos/f2a804f062384d4da3995d3bdce15610.mp4";
    command_try[2] = "-i";
    command_try[3] = "/sdcard/Videos/Videos/vidlogogif.gif";
    command_try[4] = "-filter_complex";
    command_try[5] = "overlay=(main_w-overlay_w)/2:y=(main_h-overlay_h)/2";
    command_try[6] = "-pix_fmt";
    command_try[7] = "yuv420p";
    command_try[8] = "-c:a";
    command_try[9] = "copy";
    command_try[10] = "-preset";
    command_try[11] = "ultrafast";
    command_try[12] = "/sdcard/Videos/Videos/video11.mp4";