Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (56)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (8945)

  • fftools/ffmpeg_dec : abort if avcodec_send_packet() returns EAGAIN

    22 mai 2023, par James Almer
    fftools/ffmpeg_dec : abort if avcodec_send_packet() returns EAGAIN
    

    As the comment in the code mentions, EAGAIN is not an expected value here
    because we call avcodec_receive_frame() until all frames have been returned.
    avcodec_send_packet() returning EAGAIN means a packet is still buffered, which
    hints that the underlying decoder is buggy and not fetching packets as it
    should.

    An example of this behavior was in the libdav1d wrapper before f209614290,
    where feeding it split frames (or individual OBUs) would result in the CLI
    eventually printing the confusing "Error submitting packet to decoder : Resource
    temporarily unavailable" error message, and just keep going until EOF without
    returning new frames.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] fftools/ffmpeg_dec.c
  • avcodec/mediacodecdec : warn when input buffers are not configured with proper size

    5 septembre 2019, par Aman Gupta
    avcodec/mediacodecdec : warn when input buffers are not configured with proper size
    

    In rare circumstances, if the codec is not configured with the
    proper parameters the input buffers can be allocated with a size
    that's too small to hold an individual packet. Since MediaCodec
    expects exactly one incoming buffer with a given PTS, it is not
    valid to split data for a given PTS across two input buffers.

    See https://developer.android.com/reference/android/media/MediaCodec#data-processing:

    > Do not submit multiple input buffers with the same timestamp

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] libavcodec/mediacodecdec.c
  • FFMPEG overlay:enable removing video from screen ?

    28 août, par Harold Obasi

    i am working on a filter that shows each video on a screen based on which video's turn it is

    &#xA;

    in this case the screen is 1080x1920 (for tik tok, short form content etc) with a black background, and this is the filter i have so far

    &#xA;

    turns (time ranges each video should be present on screen)&#xA;v0 : (0 - 5), (10 - 15)&#xA;v1 : (5 - 10)

    &#xA;

    ffmpeg -i video1.mp4 -i video2.mp4 -i audio.mp3 -filter_complex "&#xA;[0:v]scale=1080:-1[v0];&#xA;[1:v]scale=1080:-1[v1];&#xA;&#xA;color=size=1080x1920:color=black[bg];&#xA;&#xA;[v0][v1]overlay=x=0:y=100:enable=&#x27;between(t,5,10)&#x27;[base];&#xA;[bg][base]overlay=x=0:y=0[outv]&#xA;" -map "[outv]" -map 2:a -c:v libx264 -c:a aac -preset fast -shortest out.mp4&#xA;

    &#xA;

    with this i get the turn based switching I am looking for

    &#xA;

    the issue with this is that in some cases i'd like to be able to move the positions of the individual videos

    &#xA;

    for example in the above filter i set y=100 for v1, but i whenever its' not v1's turn it's inactive

    &#xA;

    I'd like for it to simply go behind v0, because i need all the videos to be visible, except they have the exact positions

    &#xA;

    from the docs, i understand that this is because enable, will prevent my video from showing when its condition isn't met

    &#xA;

    please, how can i solve this issue this, is there a filter for this exact case

    &#xA;