Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (33)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • avformat/amvenc : Remove unnecessary av_packet_free()

    18 mars 2021, par Andreas Rheinhardt
    avformat/amvenc : Remove unnecessary av_packet_free()
    

    The muxer's deinit function takes care of cleaning up when init fails.

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

    • [DH] libavformat/amvenc.c
  • avformat/flacenc : support writing attached pictures

    4 avril 2018, par Rodger Combs
    avformat/flacenc : support writing attached pictures
    

    Usage of packet queueing API and some cleaning done by the committer.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/flacenc.c
  • Capture ffmpeg's metadata output in powershell

    17 janvier 2021, par xdhmoore

    I'm trying to capture the output of ffmpeg in PowerShell(tm) to get some metadata on some ogg & mp3 files. But when I do :

    &#xA;&#xA;

    ffmpeg -i file.ogg 2>&amp;1 | sls GENRE&#xA;

    &#xA;&#xA;

    The output includes a bunch of lines without my matching string, "GENRE" :

    &#xA;&#xA;

          album_artist    : Post Human Era&#xA;      ARTIST          : Post Human Era&#xA;      COMMENT         : Visit http://posthumanera.bandcamp.com&#xA;      DATE            : 2013&#xA;      GENRE           : Music&#xA;      TITLE           : Supplies&#xA;      track           : 1&#xA;At least one output file must be specified&#xA;

    &#xA;&#xA;

    I am guessing something is different in the encoding. ffmpeg's output is colored, so maybe there are color control characters in the output that are breaking things ? Or, maybe ffmpeg's output isn't playing nicely with powershell's default UTF-16 ? I can't figure out if there is another way to redirect stderr and remove the color characters or change the encoding of stderr.

    &#xA;&#xA;

    EDIT :&#xA;Strangely, I also get indeterminate output. Sometimes the output is as shown above. Sometimes with precisely the same command the output is :

    &#xA;&#xA;

          GENRE           :&#xA;

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    Which makes slightly more sense, but is still missing the part of the line I care about ('Music').

    &#xA;&#xA;

    Somewhere powershell is interpreting something as newlines that is not newlines.

    &#xA;