Recherche avancée

Médias (91)

Autres articles (38)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8106)

  • avfilter/vf_scale : use the inputs color range when its set and its not overridden

    25 juillet 2013, par Michael Niedermayer
    avfilter/vf_scale : use the inputs color range when its set and its not overridden
    

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

    • [DH] libavfilter/vf_scale.c
  • avidec : check for valid bit_rate range

    4 mai 2015, par Andreas Cadhalpun
    avidec : check for valid bit_rate range
    

    If bit_rate is negative, it can trigger an av_assert2 in av_rescale_rnd.

    Since av_rescale returns int64_t, but st->codec_bit_rate is int, it can
    also overflow into a negative value.

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/avidec.c
  • Segmenting .flac files with ffmpeg truncates audio but not file length

    5 avril 2022, par Yan White

    I am trying to get Twitter spaces audio (.ts) files into a format I can easily edit, on OSX.

    &#xA;

    So far I was able to convert the files in bulk to .flac with this :

    &#xA;

    for i in *.ts;&#xA;do name=`echo "$i" | cut -d&#x27;.&#x27; -f1`&#xA;echo "$name"&#xA;ffmpeg -i "$i" -sample_fmt s16 -ar 41000 "${name}.flac"&#xA;done&#xA;

    &#xA;

    That worked, and reduced the file sizes somewhat, but..&#xA;Because most of the files are around 7 hours long, my editor of choice cannot process that much audio in one file.

    &#xA;

    So I looked around and was able to find this command to segment the files into 3hr long sections.

    &#xA;

    ffmpeg -i space-1OdKrBealBqKX_0.flac -map 0 -f segment -segment_time 10800 -c copy space-1OdKrBealBqKX_0__%03d.flac&#xA;

    &#xA;

    This works, but each file contains as much empty / silent space at the end as the orginal file. That's going to be a problem for sharing with a team that will help edit these files, as each file has the original file's length and file size. There are a lot of files.&#xA;The audio segments and naming did work though.

    &#xA;

    How to truncate the actual length of the file to the audio segment ?

    &#xA;

    Caveat : I am no expert on any of these matters, I just managed to google and get this far, so if someone knows and wants to provide working code that would be very much appreciated !

    &#xA;