Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (102)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (14067)

  • vulkan_h264 : fix long-term ref handling

    13 octobre 2023, par Benjamin Cheng
    vulkan_h264 : fix long-term ref handling
    

    h->long_ref isn't guaranteed to be contiguously filled. Use the approach
    from both vaapi_h264 and vdpau_h264 which goes through the 16 frames in
    h->long_ref to find the LTR entries.

    Fixes MR2_MW_A.264 from JVT-AVC_V1.

    • [DH] libavcodec/vulkan_h264.c
  • cbs_h2645 : Avoid memcpy when splitting fragment #2

    28 novembre 2018, par Andreas Rheinhardt
    cbs_h2645 : Avoid memcpy when splitting fragment #2
    

    Now memcpy can be avoided for NAL units containing escapes, too.

    Particularly improves performance for files with hardcoded black bars.
    For such a file, time spent in cbs_h2645_split_fragment went down from
    369410 decicycles to 327677 decicycles. (It were 379114 decicycles when
    every NAL unit was copied.)

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

    • [DH] libavcodec/cbs_h2645.c
  • Using FFMPEG To Fill in Gaps of a Raw Audio UDP Stream

    14 février 2020, par Wallace

    I have a software defined radio (SDR) that picks up audio from emergency services and with the help of software, streams raw audio using UDP. The audio is PCM signed 16-bit little-endian. The UDP stream is also not constant and only has data when audio is detected.

    The problem I’m trying to solve is that I would like the gaps in recorded audio to be filled with silent or Null audio. Below are just a couple of my attempts at resolving this :

    1. ffmpeg -f s16le -ar 8000 -i udp ://127.0.0.1:23456 -af aresample=async=1 -acodec libmp3lame -
      f rtp rtp ://127.0.0.1:1234
    2. ffmpeg -re -f lavfi -i anullsrc -f s16le -ar 8000 -i udp ://127.0.0.1:23456 -filter_complex
      amix=inputs=2:duration=first -acodec libmp3lame -f rtp rtp ://127.0.0.1:1234

    I guess my questions are regarding the best way to resolve this and whether or not ffmpeg can be used in a way to accomplish this ?