Recherche avancée

Médias (91)

Autres articles (32)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    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 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 (4642)

  • doc/filters : add geq diagonal split screen example

    12 février 2016, par Lou Logan
    doc/filters : add geq diagonal split screen example
    

    Also remove similar but confusing and less useful example.

    Based on geq expression by Patrick Race <raceink at gmail>.

    Signed-off-by : Lou Logan <lou@lrcd.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/filters.texi
  • Use FFmpeg to split a video into equal-length segments

    11 janvier 2017, par amateur3057

    I need to split many videos of unknown length into 2-minute chunks. I can use the accepted answer from http://unix.stackexchange.com/questions/1670/how-can-i-use-ffmpeg-to-split-mpeg-video-into-10-minute-chunks to do this, but this would require copying, pasting, and modifying many lines and manually calculating how many 2-minute parts are in each video (not a big deal for a few videos, but after a while it gets really tedious).

    I have used code in the past in which all I have to do is specify the input video, the start time, segment length, and the output name and by running it in a .sh file in the same folder as the input video it generates all the necessary separate videos which are labeled "output_video01," "output_video02," etc. However, somehow it doesn’t want to work on my new computer. Other answers which claim to be able to do this don’t work for me, either (when run as either a .bat or .sh file). I believe the code I previously used was :

    ffmpeg -i "input_video.MTS" -ss 164 -f segment -segment_time 120 -vcodec copy -reset_timestamps 1 -map 0:0 -an output_video%d.MTS

    Another suggestion that doesn’t work for me but apparently works for others (see http://superuser.com/a/820773/313829) :

    ffmpeg -i input_video.MTS -c copy -map 0 -segment_time 8 -f segment output_video%03d.MTS

    I currently have Windows 10 with the anniversary update build in which I have enabled Bash, but for some reason it doesn’t want to work. I can’t even see the error it gives me because the window closes so abruptly.

  • hevc : Split the sei parsing in 3 functions

    1er août 2015, par Luca Barbato
    hevc : Split the sei parsing in 3 functions
    
    • [DH] libavcodec/hevc_sei.c