Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (58)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (12620)

  • avformat/rtsp : Set port_off to zero for low min/max port range

    4 juillet 2021, par Andriy Gelman
    avformat/rtsp : Set port_off to zero for low min/max port range
    

    Fixes :
    $ ffmpeg -min_port 32000 -max_port 32001 -i rtsp ://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov -f null -
    [1] 303871 floating point exception (core dumped)

    Reviewed-by : Martin Storsjö <martin@martin.st>
    Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com>

    • [DH] libavformat/rtsp.c
  • alsdec : check block length

    8 décembre 2013, par Reinhard Tartler
    alsdec : check block length
    

    Fix writing over the end

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Addresses : CVE-2013-0845

    • [DBH] libavcodec/alsdec.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;