
Recherche avancée
Autres articles (109)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette 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. -
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (8171)
-
Why failes ffmpeg with "Failed to inject frame into filter network : Internal bug, should not have happened" ?
17 octobre 2023, par StackOverRiggeI want to convert a MP4 video file into an animated gif file using ffmpeg. I am trying to do this in two steps :


- 

- Create a palette image
- Convert the MP4 with the help of the palette image to a GIF file






I'm using ffmpeg 6.0 essentials_build.


First, I create a palette image :


ffmpeg -v warning -i video.mp4 -vf "fps=15,scale=1366:768:flags=lanczos,palettegen=stats_mode=diff" -y palette.png



Then, I'm trying to convert the MP4 to GIF :


ffmpeg -i video.mp4 -i palette.png -lavfi "fps=15,scale=1366:768:flags=lanczos,paletteuse=dither=bayer:bayer_scale=5:diff_mode=rectangle" -y video.gif



This command ends in this error message :


Error while filtering: Internal bug, should not have happeneditrate=4279.9kbits/s speed=0.742x
Failed to inject frame into filter network: Internal bug, should not have happened
Error while processing the decoded data for stream #0:0



-
libswresample/swresample : avoid s16p internal transfer format
5 janvier 2023, par Paul B Mahollibswresample/swresample : avoid s16p internal transfer format
Instead use float one by default for sample rate conversions.
The s16p internal transfer format produces visible and hearable
quantization artifacts.Signed-off-by : Paul B Mahol <onemda@gmail.com>
for S8 we continue to use S16 as it should have enough precision
Fate is adjusted so bitexactness is maintained between mips/arm/x86
if more tests became bit-inexact on some platform, the same change
can be done to themThe use of higher precision and float intermediates inevitably
leads to more differences between platforms.Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
avformat/internal : Don't auto-include os_support.h
31 août 2023, par Andreas Rheinhardtavformat/internal : Don't auto-include os_support.h
It includes various Windows-specific headers when compiling
for Windows and these sometimes cause issues : E.g. winbase.h
defines IGNORE, which clashes with a macro used in the Matroska
muxer (since 884653ee5be03ed38db957c14fad51b300611c8c) and demuxer.This header provides fallback defines for various stuff that is
mostly not used directly by (de)muxers at all :
mkdir, rename, rmdir, unlink, access, poll, pollfd, nfds_t,
closesocket, socklen_t, fstat, stat, lseek, SHUT_(RD|WR|RDWR)
and various POLL* constants.Ergo fix this issue by not auto-including this header in lots
of places via an inclusion in internal.h and instead include
it everywhere where the above stuff is used (most of these
translation units already included os_support.h).Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>