
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (104)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (10198)
-
Delphi : how to capture COLORED output of the CONSOLE application ?
22 juin 2013, par John SmithI saw several way to capture the output of the started console application. But all they were "monochrome" solution, for example FFMPEG may produce coloured output. How to catch the color ?
-
Can anyone tell me ffmpeg.wasm command to converting 24-bit color image to 8-bit color image without affecting transparency part ?
4 avril 2024, par Rohit NayakI am a new developer and currently developing a png compressor to compress png image file using next.js 14 app directory and I found the right command to do so


ffmpeg -i input.png -c:v png -pix_fmt pal8 -vf "split[a][b];[a]alphaextract[am];[b]palettegen=stats_mode=diff[pl];[b][pl]alphamerge" output.png



but i am unable to do so because I don't know how to convert that to ffmpeg.wash command.


I am using node.js v20.11.0, @ffmpeg/ffmpeg version 0.12.6 and @ffmpeg/util 0.12.1", alone with @ffmpeg/core@ version 0.12.2 which seems to work well.


My code is as following :


ffmpeg.exec([
 "-i",
 `${file.name}`,
 "-c:v",
 "png",
 "-pix_fmt",
 "pal8",
 "-vf",
 "split[a][b];",
 "[a]alphaextract[am];",
 "[b]palettegen=stats_mode=diff[pl];",
 "[b][pl]paletteuse=new=1:alpha_threshold=128",
 `output.png`,
 ]);



Is there anyone who can solve this problem ?
An early action will highly be appreciated😊


Answer in the form of


ffmpeg.exec([...commands ]) 



-
dxva2_h264 : add a workaround for old intel GPUs
4 mars 2014, par Hendrik Leppkesdxva2_h264 : add a workaround for old intel GPUs
Old Intel GPUs expect the reference frame index to the actual surface,
instead of the index into RefFrameList as specified by the spec.This workaround should be set when using one of the "ClearVideo" decoder
devices.Signed-off-by : Michael Niedermayer <michaelni@gmx.at>