Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (70)

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

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (4469)

  • syntax error in shell_exec php

    1er avril 2018, par Gerag2

    I’m stumped seems everything is right don’t know why it gives an error

    <?php
       echo "Starting ffmpeg...\n\n";
       echo shell_exec("ffmpeg -i /var/www/vhosts/site.com/httpdocs/Videos/*.* -i "$i" -c:v libx264 -crf 24  /var/www/vhosts/site.com/httpdocs/Videos/Output/"${i%.*}.mp4 null >/dev/null 2>/var/log/ffmpeg.log &");
       echo "Done.\n";
    ?>

    and yes this codes runs in terminal

    for i in *.*; do ffmpeg -i "$i" -c:v libx264 -crf 24 n/"${i%.*}.mp4"; done
  • How to create a .command file with unity with execute previlages ?

    30 janvier 2017, par EhabSherif

    Hello everyone how do you do,

    In my app I’m trying to use ffmpeg through a batch file, windows works great writing .bat files, however when I write .command files on MAC the files don’t open and tells me that I don’t have permission.

    Also when I run the command
    chmoc u+x [.command File Path]
    through the terminal the file works..

    Knowing that when I create a new text file with the command and rename it to .command it works fine.

    I write the command file in unity using File.WriteAll, is there any other way for writing the file that gives the previlage needed ? knowing that I run the batch file using a process in unity.

    Thank You,

  • building ffmpeg library for android on linux

    27 juillet 2015, par Harpreet Kaur

    I am trying to install ffmpeg libaray on linux for my android application.
    The link which I am following is https://www.assetbank.co.uk/support/documentation/install/ffmpeg/
    I have successfully completed all the steps except the last one
    i.e " Run "/sbin/ldconfig" as root. "

    It is showing the following error in the linux terminal :
    anirudh@anirudh-System-Product-Name :/sbin$ ldconfig
    /sbin/ldconfig.real : Can’t create temporary cache file /etc/ld.so.cache : Permission denied

    Please comment if anyone can suggest something regarding this issue.