Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (62)

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

  • 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

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (11721)

  • How to capture app audio using LIBAV on QT application

    17 février 2021, par Aramis Romero

    I am working on a QT application that is intended to stream its gui and audio. Currently i'm able to capture the rendered frames using QOffscreenSurface(there is an example called rendercontrol in QT sources) and to create the AVFrame for each one. The stream looks good, but now i need to add the application's audio. I know there are ways of capturing audio from system audio input devices, but i can't figure out how to obtain the audio samples from the app(windows or linux).

    


  • Use ffmpeg/avconv to re-stram a combined stream ?

    28 novembre 2014, par Terminello

    Having two separate stream sources (audio and video) each from an IP-camera, I would like to

    • combine them into a single stream
    • save this into a file (using segmentation)
    • re-stream (specific word unknown for me, sorry) the combined stream so that other users may access it without having to combine the streams on their own

    The first two things : I have already accomplished like that :

    ffmpeg -use_wallclock_as_timestamps 1 -f mjpeg -i 'http://camera.ip.address/videostream.cgi?user=username&pwd=password' -i 'http://camera.ip.address/videostream.asf?user=username&pwd=password' -map 0:v -map 1:a -acodec copy -vcodec copy -f segment -segment_time 3600 -reset_timestamps 1 'out%03d.mkv'

    Credits go to santiago (foscam.com forums)

    But how to make this stream available on the LAN at the same time while being recorded and saved to HDD ?

    BTW : You might ask, why do I need this : Because many clients do not have capabilitys to combine a stream from multiple sources, so I set up a server which does this task and clients do not go directly to the audio/video source (IP-camera) but catch the newly generated stram = : the idea.

  • Record local audio in a docker container

    17 juillet 2015, par pablo

    How can I record the audio of an application like Firefox inside a docker container with ffmpeg ?
    I’ve found examples how to forward pulseaudio to the host - netflix, skype.

    When I’m trying to use pactl :

    pactl list sources

    Or

    docker exec -it  bash
    apt-get install pulseaudio
    pactl load-module module-native-protocol-unix auth-anonymous=1 socket=/tmp/.pulse-socket

    I’m getting an error :

    Connection failure: Connection refused
    pa_context_connect() failed: Connection refused

    This also fail

    ffmpeg -f pulse -i default /tmp/pulse.wav