Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (105)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

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

  • ffmpeg hundreds of videos- to-image as shell script in keyboard maestro

    28 juillet 2023, par Leopardi

    First I would like to say that I use MacOS, I am new using ffmpeg and keyboard maestro and have no little to none experience in coding. But I think I did learned a bit is the past few weeks trying to solve the problem I will ask now. Believe me I tried searching for answers online and did a lot of trial and error before coming here to ask my question.&#xA;so here is what I am trying to do :

    &#xA;

    I have a folder (/Users/Documents/clips) with 450 short AVI clips (foto1.avi, foto2.avi...., foto450.avi) from which I would like to extract all frames from. I know how to extract all frames from 1 clip and copy them to an existing directory :

    &#xA;

    *ffmpeg -i /Users/Documents/clips/foto1.avi /Users/Documents/Frames/Foto1/frame%06d.png *

    &#xA;

    With their command all frames from the clip Foto1.avi (frame000001.png, frame000002.png...., frame000132.png) are copied to the folder /Foto1.

    &#xA;

    With keyboard Maestro I created 450 folders named afters the 450 .avi clips.

    &#xA;

    Is there a way to write a ffmpeg command that will extract the frames of all 450 .avi clips to the folder with the same name as the file ?

    &#xA;

    I was hoping there would be a way of seeing variables in this kind of way :

    &#xA;

    ffmpeg -i /Users/Documents/clips/foto%.avi /Users/Documents/Frames/Foto%/frame%06d.png

    &#xA;

    I really appreciate any help. Thank you !

    &#xA;

    I tried searching for answers in forums, ffmpeg database. And since I have almost no knowledge on coding sometimes is hard to decipher and understand the meaning of the code.

    &#xA;