Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (85)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (11071)

  • webmdashenc : Support for live stream manifests

    1er avril 2015, par Vignesh Venkatasubramanian
    webmdashenc : Support for live stream manifests
    

    This patch adds support for creating DASH manifests for WebM Live
    Streams. It also updates the documentation and adds a fate test to
    verify the behavior of the new muxer flag.

    Signed-off-by : Vignesh Venkatasubramanian <vigneshv@google.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/muxers.texi
    • [DH] libavformat/webmdashenc.c
    • [DH] tests/fate/vpx.mak
    • [DH] tests/ref/fate/webm-dash-manifest-live
  • avformat/hls : fix segment selection regression on track changes of live streams

    15 octobre 2015, par Anssi Hannula
    avformat/hls : fix segment selection regression on track changes of live streams
    

    Commit ad701326b43078b90 ("avformat/hls : open playlists immediately when
    AVDISCARD_ALL is dropped") inadvertently caused first_packet to never be
    cleared, causing select_cur_seq_no() to not use the specific code for
    live streams.

    In practice this means that when the user selects a different audio
    track during live stream (i.e. non-VOD) playback, there may be some
    additional delay as the code might select an incorrect segment at first,
    and we have to wait for video to catch audio (if too late segment was
    selected) or to download more following audio segments (if too early
    segment was selected).

    Fix that by restoring the zeroing of first_packet.

    • [DH] libavformat/hls.c
  • Pre-Transcoding live streams before Re-stream them to wowza Streaming Engine [on hold]

    14 décembre 2017, par Ninja

    i’am using ffmpeg on other device to get live feed from cam and convert them to multi bitrate outputs localy and stream them to a remote wowza to achieve adaptive bitrate content for users with optimized resources i have succeeded to transcode to one specifique bitrate locally using this line

    ffmpeg -re -i cuted.mp4 -c:v libx264 -profile:v baseline -level:v 1.2 -r 12 -g 96 -vb 110000 -s 212x120 -c:a libvo_aacenc -ab 40000 -ar 22050 -ac 1 -f rtsp -muxdelay 0.1 rtsp://*****:*****@***.168.*0.*0:1935/live/myStream

    but i need at least 4 resolutions support i’ve tried to lunched twice at the same time with diffrent resolutions but in wowza engine manager => incoming streams i got one stream input, i appreciate any suggestion