Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (45)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6424)

  • split audio into 3s, and discard if the length is less than it

    4 septembre 2019, par BarCodeReader

    I am using ffmpeg to split a batch of audio files into 3s pieces.
    However, let’s say for a 25s long raw audio, the previous 8 splits are good, no problem, but last piece will still be 3s with only 1s sound inside.

    I dont want the last piece and want ffmpeg to eigher discard or move to next audio..

    Is there such a command ?

    code I’m currently using :

       ffmpeg input.mp3 -f segment -segment_time 3 -c copy output.mp3
  • Parse split content-range header without warning.

    24 novembre 2019, par blueimp
    Parse split content-range header without warning.
    

    Fixes #3534.

  • FFmpeg command in Windows to split audio file by silence

    28 janvier 2019, par ZhouW

    I have previously used ffmpeg to split audio files by silence in Linux, with the following command (taken from How to split video or audio by silent parts, which splits an audio file by silences of -40dB that last at least 0.35 seconds) :

    ffmpeg -i testfile.wav -filter_complex "[0:a]silencedetect=n=-40dB:d=0.35[outa]" -map [outa] -f s16le -y /dev/null |& F='-aq 70 -v warning' perl -ne 'INIT { $ss=0; $se=0; } if (/silence_start: (\S+)/) { $ss=$1; $ctr+=1; printf "ffmpeg -nostdin -i testfile.wav -ss %f -t %f $ENV{F} -y %03d.wav\n", $se, ($ss-$se), $ctr; } if (/silence_end: (\S+)/) { $se=$1; } END { printf "ffmpeg -nostdin -i testfile.wav -ss %f $ENV{F} -y %03d.wav\n", $se, $ctr+1; }' | bash -x

    When trying to run this in Windows, I get the following error :

    & was unexpected at this time.

    The above command uses Linux-specific syntax and I’m unclear on how this should be written in a Windows environment. How should this be done ?