Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (89)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (10474)

  • Parse and drop gain control data, so that SSR packets decode.

    16 février 2018, par Dale Curtis
    Parse and drop gain control data, so that SSR packets decode.
    

    This will result in poor quality audio for SSR streams, but they
    will at least demux and decode without error ; partially fixing
    ticket #1693.

    This pulls in the decode_gain_control() function from the
    ffmpeg summer-of-code repo (original author Maxim Gavrilov) at
    svn ://svn.mplayerhq.hu/soc/aac/aac.c with some minor modifications
    and adds AOT_AAC_SSR to decode_audio_specific_config_gb().

    Signed-off-by : Dale Curtis <dalecurtis@chromium.org>
    Co-authored-by : Maxim Gavrilov <maxim.gavrilov@gmail.com>

    • [DH] libavcodec/aac.h
    • [DH] libavcodec/aacdec_template.c
  • Convert audio files to mp3 using ffmpeg [closed]

    24 mars, par Hrishikesh -Rishi- Choudhari

    I need to convert audio files to mp3 using ffmpeg.

    &#xA;&#xA;

    When I write the command as ffmpeg -i audio.ogg -acodec mp3 newfile.mp3, I get the error :

    &#xA;&#xA;

    FFmpeg version 0.5.2, Copyright (c) 2000-2009 Fabrice Bellard, et al.&#xA;  configuration: &#xA;  libavutil     49.15. 0 / 49.15. 0&#xA;  libavcodec    52.20. 1 / 52.20. 1&#xA;  libavformat   52.31. 0 / 52.31. 0&#xA;  libavdevice   52. 1. 0 / 52. 1. 0&#xA;  built on Jun 24 2010 14:56:20, gcc: 4.4.1&#xA;Input #0, mp3, from &#x27;ZHRE.mp3&#x27;:&#xA;  Duration: 00:04:12.52, start: 0.000000, bitrate: 208 kb/s&#xA;    Stream #0.0: Audio: mp3, 44100 Hz, stereo, s16, 256 kb/s&#xA;Output #0, mp3, to &#x27;audio.mp3&#x27;:&#xA;    Stream #0.0: Audio: 0x0000, 44100 Hz, stereo, s16, 64 kb/s&#xA;Stream mapping:&#xA;  Stream #0.0 -> #0.0&#xA;Unsupported codec for output stream #0.0&#xA;

    &#xA;&#xA;

    I also ran this command :

    &#xA;&#xA;

     ffmpeg -formats | grep mp3&#xA;

    &#xA;&#xA;

    and got this in response :

    &#xA;&#xA;

    FFmpeg version 0.5.2, Copyright (c) 2000-2009 Fabrice Bellard, et al.&#xA;  configuration: &#xA;  libavutil     49.15. 0 / 49.15. 0&#xA;  libavcodec    52.20. 1 / 52.20. 1&#xA;  libavformat   52.31. 0 / 52.31. 0&#xA;  libavdevice   52. 1. 0 / 52. 1. 0&#xA;  built on Jun 24 2010 14:56:20, gcc: 4.4.1&#xA; DE mp3             MPEG audio layer 3&#xA; D A    mp3             MP3 (MPEG audio layer 3)&#xA; D A    mp3adu          ADU (Application Data Unit) MP3 (MPEG audio layer 3)&#xA; D A    mp3on4          MP3onMP4&#xA; text2movsub remove_extra noise mov2textsub mp3decomp mp3comp mjpegadump imxdump h264_mp4toannexb dump_extra&#xA;

    &#xA;&#xA;

    I guess that the mp3 codec isn't installed. Am I on the right track here ?

    &#xA;

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