Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (51)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • 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"

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (4334)

  • Missing reference frame, slice header decode error

    20 juin 2014, par AnilJ

    I split this (http://www.auby.no/files/video_tests/h264_720p_mp_3.1_3mbps_aac_shrinkage.mp4) video using mp4box command "MP4Box -split 1 shrinking.mp4" into slices of 1 second each. I have following questions :

    1. I got different sizes of the video although I sliced it evenly at 1 second. Not sure how this happened ?
    2. When I try to dump the information about the video slice file, I get the below message with an error. Can someone please help me understand what it is, and how possibly I can modify the command above to get rid of it ? This error occurs for every video slide generated. This error comes only on the sliced videos.

    Thanks,
    /anil.

    anilj@desk1:~/workspace/testprogs/shellscripts$ ffmpeg -i invideo/shrinking_01.mp4
    ffmpeg version N-36083-g2501f93-xuggle-5.5 Copyright (c) 2000-2012 the FFmpeg developers
     built on Jun  3 2014 13:43:04 with gcc 4.6.4
     configuration: --prefix=/home/anilj/workspace/xugglehome --extra-version=xuggle-5.5 --extra-cflags=-I/home/anilj/workspace/xuggle-xuggler/build/native/x86_64-unknown-linux-gnu/captive/stage/home/anilj/workspace/xugglehome/include --extra-ldflags=-L/home/anilj/workspace/xuggle-xuggler/build/native/x86_64-unknown-linux-gnu/captive/stage/home/anilj/workspace/xugglehome/lib --disable-shared --enable-pic --enable-gpl --enable-nonfree --enable-libx264 --enable-version3 --enable-libmp3lame --enable-libvorbis --enable-libtheora --enable-libspeex --enable-libvo-aacenc --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-librtmp --enable-openssl --enable-zlib --enable-libvpx
     libavutil      51. 46.100 / 51. 46.100
     libavcodec     54. 14.101 / 54. 14.101
     libavformat    54.  3.100 / 54.  3.100
     libavdevice    53.  4.100 / 53.  4.100
     libavfilter     2. 67.101 /  2. 67.101
     libswscale      2.  1.100 /  2.  1.100
     libswresample   0. 10.100 /  0. 10.100
     libpostproc    52.  0.100 / 52.  0.100
    [h264 @ 0x1ddeac0] Missing reference picture
    [h264 @ 0x1ddeac0] decode_slice_header error
    [h264 @ 0x1ddeac0] Missing reference picture
    [h264 @ 0x1ddeac0] decode_slice_header error
    [h264 @ 0x1ddeac0] Missing reference picture
    [h264 @ 0x1ddeac0] decode_slice_header error
    [h264 @ 0x1ddeac0] Missing reference picture
    [h264 @ 0x1ddeac0] decode_slice_header error
    [h264 @ 0x1ddeac0] concealing 3600 DC, 3600 AC, 3600 MV errors
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'invideo/shrinking_01.mp4':
     Metadata:
       major_brand     : isom
       minor_version   : 1
       compatible_brands: isom
       creation_time   : 2014-06-19 20:21:02
     Duration: 00:00:00.90, start: 0.000000, bitrate: 38 kb/s
       Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 30 kb/s, 29.96 fps, 29.96 tbr, 29956 tbn, 59.92 tbc
       Metadata:
         creation_time   : 2011-05-05 18:09:35
         handler_name    : ?Apple Video Media Handler
    At least one output file must be specified
  • ffmpeg slide showing corrupted

    20 février 2020, par devcrazy

    I’m trying to use ffmpeg to create a slide showing video from bulk images.
    I tested with 3 images and the names are

    0.jpg, 1.jpg, 2.jpg

    I assigned 5 seconds per slide and the video length is 15s.

    I executed the following command

    ffmpeg -r 0.2 -i tmp/%d.jpg -vcodec mpeg4 -y myslide.mp4

    Of course, it seems all the things are normal and the video file is created.
    But when I play it, the last slide are not shown. As I change the video players, occurred the same thing. Some players are corrupted when the progress is in last slide.
    Why is this happened ? Wrong parameters ?

  • FFmpeg Get the previous 30 seconds of m3u8 stream

    17 novembre 2019, par Garret Harp

    I currently am trying to use an m3u8 file of a live stream to get the previous 30 seconds of what happened and save it to an mp4 file, basically a clip of the last 30 seconds of the live stream.

    I am currently running the following FFmpeg command : ffmpeg -live_start_index 0 -i source.m3u8 -c copy -ss 30 -t 30 output.mp4

    Rather than getting the previous 30 seconds of what happened on the stream, it gets 30 seconds of the stream once the command is run.

    Does anyone know how I could change this so go back 30 seconds in the stream to save over what previously happened ?