Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (101)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (13597)

  • FFmpeg : replacing audio in live video stream

    28 janvier 2020, par Mathijs

    I’m using FFmpeg to encode and live-stream video captured through a DeckLink capture card. The video from the card comes with an audio stream, but I want to replace the audio stream with another. This other audio stream originates from the same source but is ran through an audio processor that adds a fixed delay. The audio is fed back in the pc that runs FFmpeg through a virtual soundcard (audio over IP, but to Windows it looks like a sound card).

    I know how to compensate for this fixed delay, but the issue is that audio and video drift slowly out of sync as the stream runs. I’m assuming this is due to the small difference in clock speeds between the virtual soundcard and the DeckLink card.

    I’ve tried the vsync option and the aresample filter in FFmpeg in an attempt to get audio and video to stay synced. However I haven’t succeeded in this yet. Is there a way to make FFmpeg resample the audio and/or drop/dup frames in order to get both streams to stay in sync ?

    Currently I’m running this command, which fails to stay in sync.

    ffmpeg.exe -f dshow -i audio="WNIP Input  1 (Wheatstone Network Audio (WDM))" -itsoffset 2.3 -f decklink -thread_queue_size 128 -i "DeckLink SDI (3)" -filter_complex "[1:v:0]bwdif,format=yuv420p,setdar=16/9,scale=-1:576:flags=bicubic[vidout];[0:a:0]aresample=min_comp=0.02:comp_duration=15:max_soft_comp=0.005[audioout]" -c:v libx264 -preset slow -crf 25 -maxrate 1200k -bufsize 2400k -map "[vidout]:0" -map "[audioout]:0" -vsync 1 -r 50 -g 90 -keyint_min 90 -sc_threshold 0 -c:a libfdk_aac -b:a 192k -ac 2 -f flv "rtmp://somewhere"
  • Get remote MKV file metadata using nodejs

    31 mars 2024, par Ali Rahmani

    I need to extract the softsubs embeded into an mkv file hosted on a remote server using nodejs.

    


    All of the solutions I've found online so far are using local files, and others are either poorly documented or throwing unknown errors that I can't find online ; That doesn't work for me. I need to extract subtitles from the remote file (like http://some-url.com/videos/video.mkv) without downloading the entire file to use it in my web-based application.

    


  • avutil/riscv : add fallthrough comment to switch

    19 août, par Levi Zim
    avutil/riscv : add fallthrough comment to switch
    

    This fixes the following warning :

    libavutil/riscv/cpu.c:85:9 : warning : label at end of compound statement is a C23 extension [-Wc23-extensions]

    Signed-off-by : Levi Zim <rsworktech@outlook.com>

    • [DH] libavutil/riscv/cpu.c