Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (49)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (10197)

  • simple loop saying no file found terminal

    29 mai 2021, par Frodo Baggins

    I have this command which I am trying to find all movie files in all directories, convert them, and remove the original, within all sub directories. It displays the file names but it returns no such file found.

    


    for oggfile in "$(find . -iname '*.mp4' -or -iname '*.avi' -or -iname '*.mov')"
do
ffmpeg -i ${oggfile} -b:a 320000 -vcodec libx264 ${oggfile}_newCompressed.mp4
rm $oggfile
done ```



    


  • Revision 08955ed8e1 : Merge "vpxenc : fix per-frame psnr/size output on a terminal"

    12 juillet 2014, par James Zern

    Merge "vpxenc : fix per-frame psnr/size output on a terminal"

  • macOS terminal bug "can't see typed characters" after execution ffmpeg coommand inside shell script

    29 décembre 2017, par kostya572

    I execute from Terminal :

    sh 1.sh

    1.sh contents :

    #!/bin/bash
    S1=$(ffmpeg -i correct.wav -af silencedetect=noise=-50dB:d=0.1 -f null -  2>&1 | grep silence_duration -m 1 | awk '{print $NF}')
    echo $S1

    After execution I can’t see any typed characters in macOS Terminal. Only invisible typing reset helps to solve the problem, but all previous output clears.

    How can I modify the code to solve this bug ? I guess the problem somewhere in 2>&1.

    Bug screenshot if press enter several times after script execution :
    bug if press enter several times after script execution