Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (85)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • 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 (...)

Sur d’autres sites (10174)

  • Auto remove blackframes on set time limit

    6 juin 2016, par Ycon

    I would like to run a command that will remove parts of a video where there is more than 5 seconds of a completely black screen.

    I believe these are black frames.

    Is this possible ?

    I made an unsuccessful attempt

    ffmpeg -i test.mov -vf "blackdetect=d=2:pix_th=5.00" -an -f null - 2>&1
  • avcodec/utils : av_register_codec & hwaccel() that work in O(1) time

    8 décembre 2013, par Michael Niedermayer
    avcodec/utils : av_register_codec & hwaccel() that work in O(1) time
    

    Its possible to implement this with a few lines less code but it then
    would flip the order of the list and require registration of external
    codecs to be done first, also it could break user applications due to
    this. Thus to maintain ABI this slighty more complex solution is
    used.

    Reviewed-by : Stefano Sabatini
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/utils.c
  • What's the best way to clip a live HLS feed at a certain date/time ?

    23 mai 2016, par Ryan Detzel

    I can record the whole stream using ffmpeg but I only want to record a certain part, say starting at 10:00:30-04:00 and recording for 30 seconds. I can’t find a way to do this with ffmpeg directly so I’m thinking of using a script to watch the HLS feed and when that time comes (via EXT-X-PROGRAM-DATE-TIME) trigger ffpmeg to start recording for 30 seconds. Is there a better way to do this ?