
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (75)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (11518)
-
avutil/tests/channel_layout : make printing results part of the tests
8 mars 2024, par Marton Balintavutil/tests/channel_layout : make printing results part of the tests
Deduplicates a lot of code.
Some minor differences (mostly white space and inconsistent use of quotes) are
expected in the fate tests, there was no point aiming for exactly the same
formatting.Signed-off-by : Marton Balint <cus@passwd.hu>
-
Split video stream with FFmpeg and play part with FFplay [closed]
22 mars 2024, par Jan HeinI have a video stream send with FFmpeg to a other computer on my local network.
At the receiver computer I want to split the video stream in multiple parts and play them at the receiver computer. How can I do that ?


Example :
Stream send form sender to receiver is 1000x1000 pixels.
At the receiver split the 1000x1000 pixel stream into four parts of 500x500 pixels, and play them all four on the receiver in a separate player.


I have tryed it with a multicast stream to the receiver, and played it four times with FFplay, but that was not working correct.


I also hve looked for multiple outputs with FFmpeg and then multiple pipes to FFplay, but could not find a solution.


-
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 ])