Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (49)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • 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 (...)

  • 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 (...)

Sur d’autres sites (6087)

  • FFMPEG : Microphone capturing too much noise while using ffmpeg command

    29 octobre 2020, par Rupesh J

    I am listening audio from source IP address and trying to encode it into speex format and again sending it to the destination IP address using ffmpeg.

    


    My ffmpeg command is :

    


    ffmpeg -protocol_whitelist file,rtp,udp -i temp.sdp -c:a libspeex -f rtp rtp://:<port>&#xA;</port>

    &#xA;

    SDP file content is(temp.sdp) :

    &#xA;

    v=0 &#xA;c=IN IP4 &#xA;t=0 0&#xA;m=audio <port> RTP/AVP 98&#xA;a=rtpmap:98 L16/8000&#xA;</port>

    &#xA;

    Issue : Whenever I am trying to run this command, I am getting too much background noise on speaker.&#xA;I could hear music(not clearly), but not human voice.

    &#xA;

    Also, I have tried with highpass and lowpass filters are as follows :

    &#xA;

    ffmpeg -protocol_whitelist file,rtp,udp -i temp.sdp -af "highpass=f=200, lowpass=f=3000" -c:a &#xA;    libspeex -f rtp rtp://:<port>&#xA;</port>

    &#xA;

  • Android adding Audio to an existing Video

    12 mars 2019, par roma

    I am trying to add a new audio to an existing video in my Android app. i have used FFMPEG but it takes time.. Even i tried with MP4 Parser but still didn’t work.

    For example if i have a 30 seconds video, to add a new audio FFMPEG takes 30 seconds.(Same as duration of video) but i still want it to be fast enough so that it completes this task of adding audio to video in just 4 or 5 seconds.

    If you see in TikTok App it take takes fraction of seconds to add a new audio to an existing video. Can you guys help me or atleast let me know which library or framework or API’s i should use in android to make this task faster enough.

  • Stream audio to multiple web browsers

    7 novembre 2019, par Robert Bain

    I am trying to play some audio on my linux server and stream it to multiple internet browsers. I have a loopback device I’m specifying as input to ffmpeg. ffmpeg is then streamed via rtp to a WebRTC server (Janus). It works, but the sound that comes out is horrible.

    Here’s the command I’m using to stream from ffmpeg to janus over rtp :

    nice --20 sudo ffmpeg -re -f alsa -i hw:Loopback,1,0 -c:a libopus -ac
    1 -b:a 64K -ar 8000 -vn -rtbufsize 250M -f rtp rtp://127.0.0.1:17666

    The WebRTC server (Janus) requires that the audio codec be opus. If I try to do 2 channel audio or increase the sampling rate, the stream slows down or sound worse. The "nice" command is to give the process higher priority.