Recherche avancée

Médias (91)

Autres articles (59)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (5885)

  • avcodec/speexdec : Check channels > 2

    29 septembre 2022, par Michael Niedermayer
    avcodec/speexdec : Check channels > 2
    

    More than 2 channels seems unsupported, the code seems to just output empty extra channels

    Fixes : Timeout
    Fixes : 51569/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SPEEX_fuzzer-5511509165342720

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/speexdec.c
  • How to update tags on youtube stream through API which is streamed though FFMPEG

    6 décembre 2018, par Anirudha Gupta

    I am using FFMPEG to stream the video on youtube, I have certain text and tag that must be set as description of stream video. How this can be done in youtube data v3.

    Will getting list of video and update the latest one’s tag and text is a good idea. Is there a way I can send tag through FFMPEG command.

  • Discard channels when recording from audio interface with FFmpeg

    23 novembre 2017, par filib

    I’m calling ffmpeg from a program I’m writing in order to record audio from an audio interface. The audio interface has six channels and what I’d like to do is only record from the first two audio channels, discarding the rest. I can’t work out how to do this or if it is even possible from the documentation.

    The command I’m using is as follows :

    ffmpeg -f alsa -acodec pcm_s32le -ac 6 -ar 44100 -i hw:CARD=K6,DEV=0 output.wav

    Is this something that is possible ? If so, how ?