Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (44)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10194)

  • ffmpeg - reduce background audio noise when recording desktop screen with gdigrab

    17 juillet 2020, par Riz

    I have an application that records desktop screen using FFmpeg. Here is the command I use

    


    ffmpeg.exe -threads 4 -rtbufsize 2048m -f dshow -i audio="Microphone (Realtek Audio)"  -f gdigrab -offset_x 1 -offset_y 1 -video_size 768x432 -probesize 4096M -i desktop -pix_fmt yuv420p -c:v libx264 -crf 28 -preset ultrafast -tune zerolatency -movflags +faststart -r 15 recording.mp4


    


    It works fine. But I want to reduce the background noise from the audio. I have found some native filters for this

    


    


    But not sure how to use them while recording screen. Can you please help ?

    


  • avformat/matroskaenc : Only write Cues at the front if space has been reserved

    2 mai 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Only write Cues at the front if space has been reserved
    

    If the AVIOContext for output was unseekable when writing the header,
    no space for Cues would be reserved even if the reserve_index_space
    option was used (because it is reasonable to expect that one can't seek
    back to the beginning to write the Cues anyway). But if the AVIOContext
    was seekable when writing the trailer, it was presumed that space for
    the Cues had been reserved when the reserve_index_space option indicated
    so even when it was not. As a result, the beginning of the file would be
    overwritten.

    This commit fixes this : If the reserve_index_space option had been used
    and no space has been reserved in advance because of unseekability when
    writing the header, then no attempt to write Cues will be performed
    when writing the trailer ; after all, writing them at the front is
    impossible and writing them at the end is probably undesired.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c
  • avfilter/af_astats : measure noise floor

    16 avril 2020, par Paul B Mahol
    avfilter/af_astats : measure noise floor
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/af_astats.c