Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (12957)

  • finding speed and tone of speech in an audio using python

    1er février 2018, par kRazzy R

    Given an audio , I want to calculate the pace of the speech. i.e how fast or slow is it.

    Currently I am doing the following :

    - convert speech to text and obtaining a transcript (using a free tool).

    - count number of words in transcript.

    - calculate length or duration of file.

    - finally, pace = (number of words in transcript / duration of file).

    However the accuracy of the pace obtained is dependent purely on transcription , which I think is an unnecessary step.

    Is there any python-library/sox/ffmpeg way that will enable me to

    • to calculate, in a straightforward way,the speed/pace of talk in an audio
    • dominant Pitches/tones of that audio ?

    I referred : I referred : http://sox.sourceforge.net/sox.html and https://digitalcardboard.com/blog/2009/08/25/the-sox-of-silence/

  • ffmpeg How to reduce the processing speed of ffmpeg

    28 août 2017, par rinofcan

    I have a video with fps=30, But when I run the command, I see the following :

    frame=32  fps=62  q=-1.0  Lsize=N/A  time=00:00:01.27  bitrate=N/A

    That’s the processing speed i.e. 62 frames processed per second.

    But I want to reduce it to fps = 40 or fps = 50.

    What I have to do

  • FFMPEG Speed drops and warnings

    31 juillet 2018, par leo_dragons

    I’ve been trying to stream from a BlackMagic DeckLink Mini Recorder to 4 different outputs using FFMPEG, but i get a huge delay let say more than 60 seconds of delay, it takes a long time to buffer on any player and when i check the terminal i get these warnings :

    [decklink @ 0x4655e40] Decklink input buffer overrun!

    I’ve also noticed that i have a very slow capture speed like 0.5x. Here’s the string i use, i’m currently running on CentOS 7.5 :

    ffmpeg -f decklink -i "DeckLink Mini Recorder" -y -pix_fmt yuv420p -vcodec h264 -preset ultrafast -tune zerolatency -b 900k -g 48 -framerate 30 -movflags +faststart -vf scale=1280:720 -bufsize 400k -maxrate 1200k -benchmark -f flv "rtmp ://10.0.0.172:1935/CAMARAS/live9" -vcodec h264 -preset ultrafast -tune zerolatency -b 700k -g 48 -framerate 30 -movflags +faststart -vf scale=854:480 -bufsize 400k -maxrate 1000k -benchmark -f flv "rtmp ://10.0.0.172:1935/CAMARAS/live10" -vcodec h264 -preset ultrafast -tune zerolatency -b 400k -g 48 -framerate 30 -movflags +faststart -vf scale=854:480 -bufsize 400k -maxrate 500k -benchmark -f flv "rtmp ://10.0.0.172:1935/CAMARAS/live11" -vcodec h264 -preset ultrafast -tune zerolatency -b 200k -g 48 -framerate 30 -movflags +faststart -vf scale=640:360 -bufsize 300k -maxrate 300k -benchmark -f flv "rtmp ://10.0.0.172:1935/CAMARAS/live12" > /dev/null 2>&1 &

    But if i run this string alone i get decent capture speed, but i still have an awful latency 30ish seconds :

    ffmpeg -f decklink -i "DeckLink Mini Recorder" -y -pix_fmt yuv420p -vcodec h264 -preset ultrafast -tune zerolatency -b 900k -g 48 -framerate 30 -movflags +faststart -vf scale=1280:720 -bufsize 400k -maxrate 1200k -benchmark -f flv "rtmp ://10.0.0.172:1935/CAMARAS/live9"

    Any help will be highly appreciated.

    Tahnk you.