Recherche avancée

Médias (91)

Autres articles (75)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (11701)

  • Transcode from a live m3u8 using -ss

    20 août 2015, par pgm

    I’m trying to create a VOD hls clip from a live hls stream on adobe media server using ffmpeg and nodejs.

    An example of the command I’m using looks like this :

    ffmpeg -report -analyzeduration 999999999 -probesize 999999999 -ss 50 -i http://live.m3u8 -y -r 29.97 -threads 0 -hls_list_size 0 -c:v copy -a:v copy streamoutput.m3u8

    The problem is the -ss param (start time) is calculating the start time from the live point on the stream, rather than from the first ’ts’ fragment. I’d like to be able to encode inside of a "DVR window," meaning seeking from the beginning of the stream, not from the live point of the stream.

    Example : I use the param -ss 50 and it won’t encode for 50 seconds until the live stream catches up, outputting this in the ffmpeg log :

    [h264 @ 0000000002beae00] non-existing PPS 0 referenced
    [h264 @ 0000000002beae00] non-existing PPS 0 referenced
    [h264 @ 0000000002beae00] decode_slice_header error

    Once the live stream catches up to the 50 second delay it begins encoding. It works this way when I use -ss as either an input parameter or output parameter.

    Is there a way to accomplish this ? I’ve noticed that if I leave -ss completely out of the command, it will start at the beginning of the stream, but as soon as it’s there, even as a 0, it will start at the "live point."

    Any help is much appreciated !

  • Do not override CFLAGS, as CFLAGS is a user flag.

    15 janvier 2017, par David Seifert
    Do not override CFLAGS, as CFLAGS is a user flag.
    

    * Furthermore, use NDEBUG globally to detect the presence
    of building with more debug output information.
    AX_CHECK_ENABLE_DEBUG is easier to use, and nowadays
    Gnome has also switched to it from its own custom solution.

    Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>

    • [DH] configure.ac
    • [DH] include/FLAC/assert.h
    • [DH] m4/ax_check_enable_debug.m4
    • [DH] src/libFLAC/cpu.c
    • [DH] src/libFLAC/lpc.c
    • [DH] src/libFLAC/stream_encoder.c
    • [DH] src/plugin_common/Makefile.am
    • [DH] src/plugin_common/charset.c
    • [DH] src/plugin_xmms/http.c
    • [DH] src/share/Makefile.am
  • av1/h264_metadata : Don't reinitialize data

    20 juin 2019, par Andreas Rheinhardt
    av1/h264_metadata : Don't reinitialize data
    

    If the relevant elements (the color description elements for AV1 and the
    VUI elements in general for H.264 (since 1156b507)) are absent, then their
    correct values (usually meaning unknown) have already been inferred by
    the reading process, so that it is unnecessary to initialize them again
    in the av1/h264_metadata filters even when they were initially absent.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/av1_metadata_bsf.c
    • [DH] libavcodec/h264_metadata_bsf.c