Advanced search

Medias (1)

Tag: - Tags -/Rennes

Other articles (65)

  • Les autorisations surchargées par les plugins

    27 April 2010, by

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • HTML5 audio and video support

    13 April 2011, by

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

On other websites (8910)

  • ffmpeg color, size and amplitude

    9 December 2017, by user266005

    Trying to get ffmpeg to create an audio waveform while being able to control the image size, color, and amplitude. I have tried this (and many variations) but it just returns unmatched " .

    ffmpeg -i input -filter_complex "aformat=channel_layouts=mono,compand=gain=-3,showwavespic=s=1000x350,color=s=1000x350:color=A072FD” -frames:v 1 output.png

    Thoughts?

  • Merge commit ’b9f76d19d81fbc7f088536f966c2d3dc23c34ddc’

    13 July 2015, by Michael Niedermayer
    Merge commit ’b9f76d19d81fbc7f088536f966c2d3dc23c34ddc’
    

    * commit ’b9f76d19d81fbc7f088536f966c2d3dc23c34ddc’:
    hevc_ps: make sure failing to decode an SPS always returns an error

    Conflicts:
    libavcodec/hevc_ps.c

    See: 15893adbdb6a7000f59207bcb88def6e7b4812b9
    Merged-by: Michael Niedermayer <michael@niedermayer.cc>

  • how to call avconv via shell_ exec in php?

    8 January 2018, by Blurry Script

    when I call a command to convert video from console linux its all working, but when I call the same command from shell_exec in php, it gives no errors it returns nothing.

    even tough I added sudo 2>&amp;1 to redirect the output, for example this command:

    $res = shell_exec("avconv -i film.mkv 2>&amp;1");
    echo $res //nothing
    exit;