Recherche avancée

Médias (91)

Autres articles (46)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (10611)

  • ffmpeg with nginx rtmp multiple udp not streaming well

    16 septembre 2017, par Dlniya Dlzar

    I am using ffmpeg for live streaming via nginx rtmp , i am streaming 20 streams for each server (UDP to rtmp) i wrote small python script to loop
    through each streams and run following command for each stream, but each time i start streaming some of the streams not working , i mean ffmpeg not send to nginx , if i use (http to rtmp or rtmp to rtmp etc) everything is working fine just when i use (udp to rtmp) this problem happen , please advice . sorry for bad English : this is my command

    ffmpeg -i udp://localhost:3000 -filter_complex
    [0]yadif[main];movie=/root/ftc/logo/logo3.png[logo];[main]
    [logo]overlay=650:10" -c:a aac -ac 1 -strict -2 -c:v libx264 -maxrate 2000k
    -bufsize 2000k -g 40 -r 23 -preset ultrafast -threads 1 -f flv
    rtmp://localhost:3000/live/stream1 null >/dev/null
    2>/var/log/ffmpeg.log &
  • FFMPEG - Read Audio File on html player while writing ?

    23 février 2018, par Nathan Ferreyrolles

    I have the project to record a streams of french radios and after read files on my website (record every weeks) I have segmented by hours and for 7 days.
    But i have 2 questions :
    When i play the mp3 file who writing at the time on my website i have a bug like -02:30:33s remain ? What’s wrong for you ?

    This is my ffmpeg code : ./ffmpeg -y -i http://broadcast.infomaniak.net/radioscoop-bourg-128.mp3 -f segment -strftime 1 -segment_atclocktime 1 -segment_time 3600 -reconnect 1 -reconnect_at_eof 1 -reconnect_delay_max 2 -timeout 200000 -acodec copy /var/www/mysite.fr/public_html/rsbourg/%A/%H.mp3

    And i would like to know a code to reconnect the record if i have a problem, because this morning the programm has stopped for nothing reasons ? I use Putty and the programm Screen for record many radios at same time :)

    Best regards :)
    (sorry for my bad english i’m french :/ )
    Nathan

  • QT paly audio by QAudioDevidce can't connect to PulseAudioService

    30 mars 2022, par XMingG

    Like title, i'm trying to use Qt and FFmpeg to play audio. My code like this :

    


    QAudioOutput *audio_output;

    QIODevice *stream_out;

    QAudioFormat audio_fmt;
    audio_fmt.setSampleRate(44100);
    audio_fmt.setChannelCount(2);
    audio_fmt.setSampleSize(16);
    audio_fmt.setCodec("audio/pcm");
    audio_fmt.setByteOrder(QAudioFormat::LittleEndian);
    audio_fmt.setSampleType(QAudioFormat::SignedInt);
    
    QAudioDeviceInfo info = QAudioDeviceInfo::defaultOutputDevice();
    if(!info.isFormatSupported(audio_fmt))
    {
        audio_fmt = info.nearestFormat(audio_fmt);
    }
    
    audio_output = new QAudioOutput(audio_fmt);


    


    When i use QAudioDeviceInfo info = QAudioDeviceInfo::defaultOutputDevice()
i get PulseAudioService : pa_context_connect() failed error.
So how can i fix it ?
By the way, i'm using Ubuntu 16.04 and Qt 5.14.2, and i have add 'mutilmedia' to Qt pro file

    


    I checked my Qt file ,and i have audio dir in plugins, it's not lib problem. Also, i read this post ,but i don't know how to fix it, anybody have idea ? Thank you guys,and my English is bad, wish you can understand what do i say.