Recherche avancée

Médias (91)

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (13623)

  • 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