Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (98)

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

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

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

Sur d’autres sites (9052)

  • lavr : print out the mix matrix in ff_audio_mix_set_matrix()

    18 janvier 2013, par Justin Ruggles

    lavr : print out the mix matrix in ff_audio_mix_set_matrix()

  • fate : add print() to the tests of eval

    17 février 2013, par Michael Niedermayer

    fate : add print() to the tests of eval

  • Print results at conclusion of bash 'for loop'

    4 juin 2016, par Matthew Schwarz

    I’m a beginner.
    I have a Bash script that embeds subtitles into mkv files if they exist in a directory.

    for i in *.mkv; do
       if [ -f "${i%mkv}"*"srt" ]; then
           ffmpeg -i "$i" -f srt -i "${i%mkv}"*"srt" -map 0:0 -map 0:1 -map 1:0 -c:v copy -c:a copy -c:s srt $i.output.mkv
           mv "${i%mkv}"*"srt" "${i%mkv}srt".old
           mv $i $i.old
           mv $i.output.mkv $i
       else
           echo $i "does not have srt file"
       fi
    done

    It looks for all .mkv files that have an associated .srt file and does some ffmpeg magic to it. If it does not find an associated .srt file it says that the .mkv file "does not have srt file."

    How can I make it so that at the conclusion of the for loop I get a print out of all the .mkv files that did have an .srt file and did successfully do all the other actions ?

    Thank you.