Recherche avancée

Médias (91)

Autres articles (102)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • 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 (13204)

  • avcodec/mpegvideo : Fix null pointer dereference of picture array

    14 juillet 2015, par Michael Niedermayer
    avcodec/mpegvideo : Fix null pointer dereference of picture array
    

    Fixes : 0d0a2bace067d09c08f0fa5340496c23_signal_sigsegv_7ffff713351a_342_WobblyWindowsIntro.avi with memlimit of 67108864

    Found-by : Samuel Groß, Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mpegvideo.c
  • avcodec/diracdec : Check for hpel_base allocation failure

    18 juillet 2015, par Michael Niedermayer
    avcodec/diracdec : Check for hpel_base allocation failure
    

    Fixes null pointer dereference
    Fixes : signal_sigsegv_b02a96_280_RL_420p_ffdirac.drc with memlimit of 67108864

    Found-by : Samuel Groß, Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/diracdec.c
  • How to do the "TV Compression" thing in FFMPEG ?

    7 août 2019, par Imageny

    I’m trying to do this thing in FFmpeg where I make the picture a little better but I also compress the audio as heavily as on TV. I’ve tried everything, but nothing seems to be working out very well. I’m making this code for a VB program.

    This is the result I want to achieve. It’s the first part of the video : https://streamable.com/3rjnp

    That part was done using the audio effects in VEGAS Pro.

    And this is the code I keep working on :

    ffmpeg -i "inputfile.mp4" -s 1920x1080 -vf "minterpolate=59.94,tblend=all_mode=average,framestep=2, colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96, colorlevels=rimax=0.902:gimax=0.902:bimax=0.902, noise=alls=25:allf=t+u" -af "alimiter, dynaudnorm=p=1/sqrt(2):m=100:s=12:g=15, treble=f=1803:t=o:width=6:g=15, acompressor=threshold=0.3:ratio=20:attack=5:release=50, "volume=-12.7dB", dynaudnorm=m=100:r=1:s=15:g=3, aresample=48000, alimiter, acompressor=threshold=1:release=20, "volume=20dB", loudnorm, alimiter" -vcodec mpeg4 -acodec aac -ar 48000 -b:a 256k "outputfile.mp4"

    How do I properly do it ?