Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (67)

  • Les images

    15 mai 2013
  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • 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

Sur d’autres sites (7228)

  • rtp packet loss handling in ffmpeg

    1er avril 2014, par DSG

    I am working on rtsp player. I am using live555 as a rtsp client library. In some cases or lets say in weak network I am getting a rtp packet loss. Which causes a jitter effect in video. This is because of I-frame loss in H.264 video. But this effect is not visible if used ffmpeg as a rtp packet receiver. So right now I have started comparison between live555 and ffmpeg rtp packet hadnling and packet loss handling.

    In ffmpeg library I found this api int rtp_valid_packet_in_sequence(RTPStatistics *s, uint16_t seq) in file rtpdec.c.

    Can somebody please explain me roll of this function in packet loss handling ?

    or

    Else can anybody explain how ffmpeg handle h.264 packet loss ?

    Does ffmpeg drops entire frame if I-frame is lost ?

    Any help will appreciated.

    Thank You.

  • ffmpeg : default hwaccel_output_format to cuda when hwaccel is cuvid

    6 mars 2020, par Timo Rothenpieler
    ffmpeg : default hwaccel_output_format to cuda when hwaccel is cuvid
    

    This ensures old commandlines using -hwaccel cuvid don't break due to
    the recent removal of the the cuvid-specific hwaccel bringup.

    • [DH] fftools/ffmpeg_opt.c
  • ffmpeg : map audio and subtitle stream of (different) specific language only

    24 juillet 2019, par RocketNuts

    I have a bunch of video files with multiple audio and subtitle streams (in different languages). The streams contain metadata specifying which stream is which langauge. I want to copy all files but maintaining only the spanish audio streams, and the english subtitle streams (and the video stream of course).

    Unfortunately, not all videos contain the same language streams at the same index, so instead of using something like -map 0:a:2 I am trying to select the streams based on metadata.

    However, if I try the following : (based on answers found in similar questions like this and this)

    ffmpeg -i input.mkv -map 0:v -map 0:a:m:language:spa -map 0:s:m:language:eng -c copy output.mkv

    It still copies the first audio and first subtitle stream, no matter which stream is which language. In other words, this behaves just like -map 0:v -map 0:a:0 -map 0:s:0 which isn’t what I need.

    Is there a different map argument I can use to make sure it picks only the spanish audio stream and only the english subtitle stream, regardless of their index in the input file ?