Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (59)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

Sur d’autres sites (7487)

  • Adaptive nmls filters matlab python [closed]

    1er juin 2012, par user1314738

    I am interested in removing noise in audio from mike for reatime audio streaming using ffmpeg.

    As I get some background noise while I pass the recorded stream I am interested in removing this noise before I encode the stream the stream.

    There are few issues :-

    1.as i need to this in real time for audio streaming I cannot use Matlab TOOLBOX filters !
    so please suggest other audio processing platforms I can use for the purpose.
    If that is in python it would be really good.

    2.through ffmpeg I can link the alsa sound card using :-

    $ ffmpeg -i hw:0:0 -acodec............... rtp//255:130:40 and stream on rtp.

    but when I will be filtering the sound from mic before it is being used by the ffmpeg, i am bit confused about the syntax for the input to the ffmpeg encoder for rtp streaming.

    would it be fine to use some sort of pipe-lined buffer in between ?But the issue of real time stream and time sync between streaming and filtering still haunts.

    Please help me out in selecting right platform for filtering the audio stream and it's integration with ffmpeg encoder for real time streaming.

  • GStreamer H264 stream to HTML5 webpage

    28 septembre 2020, par LostInTheEcho

    I have a Linux board with a camera connected to it that is recording whatever goes on to a mp4 file(s) on the SD card of the board. I'm using gstreamer which connects to the /dev/video1 source and uses H264 encoding. I run it with a command similar to this one :

    


    gst-launch-1.0 v4l2src device=/dev/video1 ! video/x-h264,width=640,height=480,framerate=30/1 ! h264parse ! rtph264pay ! udpsink host={host} port={port}


    


    The upper part works fine and records everything locally, but I'd also like to stream this video to a HTML5 webpage, which is meant to change camera options and have a live preview.

    


    I tried using HTTP via tcpsink and HLS via hlssink, but both resulted in a 8-10 second delay, which is basically unusable. The only thing that has no delay is the UDP sink. As far as I know the only way to catch the UDP stream is by having a tool like FFMPEG in the middle, that can convert the UDP stream to MJPEG for instance and serve it to the webpage.

    


    That would probably work, but the board doesn't have a very good CPU and is already at 50% utilization. Converting stream via FFMPEG would probably push it to 100%.

    


    Is there any other way to stream to a webpage without delay ?

    


  • Compile FFMpeg for Xcode 5 without GCC ?

    9 janvier 2014, par Joseph Toronto

    I'm trying to compile FFMpeg to add to my iOS app project in Xcode5, however since GCC is no longer included the ./configure script included with FFMpeg doesn't work. Unix/Linux is NOT my strong suit so I'm pretty much at a loss as to what to do next. I know I can install GCC manually, but if FFMpeg is compiled with GCC and the rest of my project is compiled with LLVC/Clang/whatever won't it cause problems. I did manage to install FFmpeg with Brew but I'm not sure what that even accomplished since it wasn't done using options flags like below :

    ./configure --prefix=armv7 --disable-ffmpeg --disable-ffplay --disable-ffprobe --disable-ffserver --enable-avresample --enable-cross-compile --sysroot="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk" --target-os=darwin --cc="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc" --extra-cflags="-arch armv7 -mfpu=neon -miphoneos-version-min=6.1" --extra-ldflags="-arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk -miphoneos-version-min=6.1" --arch=arm --cpu=cortex-a9 --enable-pic

    None of the scripts/fixes I've tried work, even if they're advertised as working in IOS7/Xcode 5, because they all use GCC. What should I do ?