Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (70)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (8184)

  • avcodec/vqavideo : Limit resolution

    22 août 2019, par Michael Niedermayer
    avcodec/vqavideo : Limit resolution
    

    Fixes : Timeout (288sec -> 1ms)
    Fixes : 16353/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VQA_fuzzer-5633402606190592

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/vqavideo.c
  • avcodec/vc1 : Check for excessive resolution

    8 août 2019, par Michael Niedermayer
    avcodec/vc1 : Check for excessive resolution
    

    Fixes : overflow in aspect ratio calculation
    Fixes : signed integer overflow : 393215 * 14594 cannot be represented in type 'int'
    Fixes : 15728/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMV3IMAGE_fuzzer-5661588893204480

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/vc1.c
  • How to stitch(concat) two transport stream with two different resolution and I-frame slices format without loosing resolution and slices information

    2 octobre 2019, par ART

    I have been trying to test a use case with steam captured from multimedia device and that didn't work. And then I have been trying to create this specific transport stream for like two days now without success, so requesting some help.

    &#xA;&#xA;

    I need to create transport stream with two different resolution and two different slicing format.

    &#xA;&#xA;

    I divided the task in following steps and in last two steps I need help.

    &#xA;&#xA;

    Step 1 : Download sample video with resolution : 1920x1080.
    &#xA; I downloaded big buck bunny mp4 .

    &#xA;&#xA;

    Step 2 : Create transport stream with following
    &#xA;resolution : 1920x720, H264 I frame slices per frame : 1
    &#xA;I used following ffmpeg commands to do that.

    &#xA;&#xA;

    #Rename file to input.mp4&#xA;$ mv bbb_sunflower_1080p_30fps_normal.mp4 input.mp4&#xA;#Extract transport stream&#xA;$ ffmpeg -i input.mp4 -c copy first.ts&#xA;

    &#xA;&#xA;

    first.ts is having 1980x720 resolution and one H264 I slice per frame.

    &#xA;&#xA;

    Step 3 : Create another transport stream with smaller resolution using following commands

    &#xA;&#xA;

    #Get mp4 with lower resolution.&#xA;$ ffmpeg -i input.mp4 -s 640x480 temp.mp4&#xA;#Extract trans port stream from mp4&#xA;$ ffmpeg -i temp.mp4 -c copy low_r.ts&#xA;

    &#xA;&#xA;

    Step 4 : Edit(and re-encode ?) low_r.ts to have two H264 I frame slices.&#xA;I used following command to achieve it.

    &#xA;&#xA;

    $ x264 --slices 4 low_r.ts -o second.ts&#xA;

    &#xA;&#xA;

    However when I play this second.ts on vlc using following command it doesn't play

    &#xA;&#xA;

    $ vlc ./second.ts &#xA;

    &#xA;&#xA;

    And using Elacard StreamEye software when I analyze the transport stream I see that it has 4 H264 I slices in only two times other than that lot of H264 p slices and H264 B slices. &#xA;Need help here to figure out why second.ts doesn't play and why slicing is not correct.

    &#xA;&#xA;

    Step 5 : Combine both the transport stream without loosing resolution and slicing information.&#xA;Don't know command for this. Need help here.&#xA;I tried ffmpeg but that combines two stream with different resolution and makes one file with one resolution.

    &#xA;&#xA;

    Any suggestions/pointers would help me proceed. Let me also know if any of the above steps are not fine too.

    &#xA;