Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (80)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • jpeg2000 : Split int/float codepaths depending on the DWT

    1er juillet 2013, par Michael Niedermayer
    jpeg2000 : Split int/float codepaths depending on the DWT
    

    DWT53 is always int, DWT97 is always float.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/jpeg2000dec.c
  • Ffmpeg split video

    14 septembre 2020, par Kiril Mytsykov

    I need to split video file by duration (for example, if I have video file with duration of 30sec and I want to get 10 chunks : 3sec, 3sec etc.. and m3u8 playlist).

    &#xA;

    I have my-video.mp4 (30 sec).&#xA;When I run this command :

    &#xA;

    ffmpeg -i my-video.mp4 -c:v libx264 -c copy -an -map 0 -muxdelay 0 -muxpreload 0 -output_ts_offset 0 -f segment -segment_time 3 -segment_wrap 1000 -segment_list_size 1 -segment_list my-video.m3u8 -segment_list_flags &#x2B;live my-video-%03d.mp4&#xA;

    &#xA;

    The first problem is :&#xA;I receive only 4 mp4 files :

    &#xA;

    my-video-000.mp4 (8sec)&#xA;my-video-001.mp4 (8sec)&#xA;my-video-002.mp4 (8sec)&#xA;my-video-003.mp4 (5sec)&#xA;

    &#xA;

    The second problem is :&#xA;my-video.m3u8 playlist is created, but with last segment only :

    &#xA;

    #EXTM3U&#xA;#EXT-X-VERSION:3&#xA;#EXT-X-MEDIA-SEQUENCE:3&#xA;#EXT-X-ALLOW-CACHE:YES&#xA;#EXT-X-TARGETDURATION:6&#xA;#EXTINF:5.033333,&#xA;my-video-003.ts &#xA;#EXT-X-ENDLIST&#xA;

    &#xA;

    What's wrong with my command. I have tried a lot of different combinations (after reading http://ffmpeg.org/ffmpeg-formats.html#segment_002c-stream_005fsegment_002c-ssegment and similar questions/answers on stackoverflow, but didn't succeed)

    &#xA;

  • avformat/mux : split side data earlier in av_write_frame and av_interleaved_write_frame

    4 novembre 2016, par James Almer
    avformat/mux : split side data earlier in av_write_frame and av_interleaved_write_frame
    

    Similarly, merge it back before returning.

    Fixes ticket #5927.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/mux.c