Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (49)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (6687)

  • libavdevice/v4l2 : fix invalid access to struct v4l2_buffer

    20 septembre 2017, par Jaroslav Beran
    libavdevice/v4l2 : fix invalid access to struct v4l2_buffer
    

    In case we are short of queued buffers, at first v4l2_buffer was enqueued to kernel so it's not owned by
    user-space anymore. After that it's timestamp field was read, but it might be overwritten by driver at
    that moment. It resulted in invalid timestamp sometimes.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavdevice/v4l2.c
  • RTSP to HLS using ffmpeg

    27 mai 2022, par Bjamse

    Goal

    &#xA;

    I want to convert an RTSP stream to HLS segments.
    &#xA;I want the segments to be 10 seconds each, and I want at least 15 segments.
    &#xA;I want the segments to wrap and overwrite itself afterwards.

    &#xA;

    The RTSP stream is a camerafeed from an ip camera and the HLS stream will bea used on a website. So i want a buffer, but the latency of the camera is not important and the stream can be 30 seconds behind or whatever.

    &#xA;

    What i tried so far

    &#xA;

    This is the command i have tried to run.

    &#xA;

    ffmpeg -fflags nobuffer  &#xA;-i rtsp://127.0.0.1:8554/ &#xA;-vsync 0  &#xA;-copyts&#xA;-vcodec copy  &#xA;-movflags frag_keyframe&#x2B;empty_moov  &#xA;-an  &#xA;-hls_flags delete_segments&#x2B;append_list&#xA;-f segment  &#xA;-segment_list_flags live  &#xA;-segment_time 10  &#xA;-segment_list_size 0  &#xA;-segment_wrap 10 &#xA;-segment_format mpegts &#xA;-segment_list ./index.m3u8 &#xA;-segment_list_type m3u8 &#xA;-segment_list_entry_prefix ./ &#xA;./%d.ts&#xA;

    &#xA;

    Problem with current command

    &#xA;

    I do not understand all the flags.

    &#xA;

    I do get a looping amount of segments, but they are way to short.
    &#xA;The index.m3u8 file also keeps getting longer and does not wrap.

    &#xA;

    There is probably something more i have done wrong too but i dont know.

    &#xA;

  • doc/developer : merge the 'contributing code' section into its parent chapter

    20 mars 2023, par Anton Khirnov
    doc/developer : merge the 'contributing code' section into its parent chapter
    

    The section consistes of a single short paragraph linking to other
    chapters. The enclosing chapter also has no other sections, all other
    text is placed in the chapter directly.
    Keeping a separate section for this paragraph just adds more clutter.

    • [DH] doc/developer.texi