Recherche avancée

Médias (91)

Autres articles (11)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (4214)

  • How to remove noise from audio .wav file in python3 like Audacity app works [on hold]

    9 février 2019, par Manohar Sonwan

    I have been working on an audio file to remove noise by using python3, I have tried "ffmpeg" (highpass and lowpass) filter option but I am not getting the correct result which I want. Then I found Audacity application which noise reduction technique is very good and it gives very good clear sound. Please suggest me any effective library in python3

    Consider I have been recording a tennis player and I want to listen collision sound of tennis racquet and the ball only but there is also some other noise like people, bird, car etc.

    ffmpeg -i  IMG_2016_FFMPEG.WAV -af "highpass =f=800,lowpass =f=100"
    IMG_2016_FFMPEG_lp_100_hp_800.wav

    It not giving output as Audacity application

  • FFmpeg rtsp to webm conversion

    11 novembre 2014, par Sven

    I am working on the implementation for liveTV in mediabrowser (http://www.mediabrowser.tv)
    Now i do the implementation for ArgusTV.

    I use the rtsp stream that argus provides. But i don’t get a good video back...
    See in the link below. I uploaded our transcoding file with the output i get (webm).
    As you can see, the video is not good.

    http://www.filedropper.com/ffmpeg

    I also tried with the unc path folder output from Argus. But they provide a "tsbuffer" file. That’s not possible to use with ffmpeg ? Only ts files ?

    Somebody that can help me ?

  • recording video in real-time with OpevCV VideoWriter

    6 août 2023, par nick topper

    I have a few OpenCV projects that analyze video over USB, and in certain conditions must record the video stream to a file. People using my software complain that 10+ minute recordings yield video files that are about 20 seconds longer than they should be.

    



    I'm using openCV's VideoWriter. Iv'e tried things like setting CV2_CAP_PROP_FPS to a very low setting, and iv'e tried getting the average frame rate over a few seconds to find a good setting for my frame rate of the output file. Still not close enough to real time for my needs.

    



    Does anyone know of a good way to make sure my video is recording close to real time ? Should I use something like time.sleep (in python) to cap my framerate ? Or is there a better way to do this ?