Recherche avancée

Médias (91)

Autres articles (46)

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

  • Python - Popen(shlex.split(command), shell=False) - not working with ffmpeg

    1er octobre 2014, par speedyrazor

    I am using Popen(shlex.split(command) to run an ffmpeg command which saves out wav files from a quicktime mov file and also save an ffmpeg log file at the same time. if I use this :

    command = './ffmpeg/ffmpeg -i /Users/me/Documents/MOVS/source.mov -map 0:1 -acodec pcm_s16le -y /Users/me/Documents/MOVS/source_01.wav'

    p = Popen(shlex.split(command), shell=False)

    Then the command completes correctly, but if I add the line which saves out a logfile then it no longer works, so if I use :

    command = './ffmpeg/ffmpeg -i /Users/me/Documents/MOVS/source.mov -map 0:1 -acodec pcm_s16le -y /Users/me/Documents/MOVS/source_01.wav 2> /Users/me/Documents/MOVS/lofFile.txt'

    p = Popen(shlex.split(command), shell=False)

    Then it no longer works. Using either command in the command line, without python, works fine. If I just use :

    p = Popen(command, shell=True)

    Then all works well, but I need to use the shell=False for other reasons.

    I just can’t understand why it breaks by adding the ’correct’ end line of 2> /Users/me/Documents/MOVS/lofFile.txt

  • avfilter/showwaves : split out draw sample code

    26 décembre 2013, par Clément Bœsch
    avfilter/showwaves : split out draw sample code
    
    • [DH] libavfilter/avf_showwaves.c
  • avformat/matroskaenc : Split assembling CodecPrivate from writing it

    16 juin 2022, par Andreas Rheinhardt
    avformat/matroskaenc : Split assembling CodecPrivate from writing it
    

    This is in preparation for splitting writing and updating
    extradata more thoroughly later.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/matroskaenc.c