
Recherche avancée
Autres articles (68)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (7407)
-
ffmpeg : Remove an exact hex color ?
26 octobre 2022, par Andrew Youngi'm editing .gifs and it is a MUST that we remove a specific hex encoding from the gif and place the background behind it.


This is all working fine, the problem is that 'colorkey' arg at its lowest default value (0.01) removes 'similar colors' to your input, not the exact value. So it's screwing up the entire gif by removing colors we don't need removed !


Also tried chromakey, which does claim to be exact in the docs. Just doesn't work for gifs apparently, we're getting black pixels everywhere.


This should be an easy problem, so how do we remove an exact hex color on a .gif ? Code below, although it doubt it helps. Thanks.


-i background.png -i gifInfo.gif -i foreground.png -filter_complex '[0:v]split [a][b];[a] palettegen=stats_mode=full[p];[b][p] paletteuse=new=1[pbgout];[pbgout]scale=w=350:h=-1,pad=1080:1080:x=350:y=470[bgout];[1:v]colorkey=0x080806:[ckout];[bgout][ckout]overlay[olout];[olout][2:v]overlay[oloutb];[oloutb]split[s0][s1];[s0]palettegen=stats_mode=full[p];[s1][p]paletteuse=dither=none' -y testingGif.gif



-
Piping stdout from child process directly to google cloud storage. Node.js
2 octobre 2018, par glennanyone here with expertise on piping to google cloud storage ?
i am using FFmpeg on a server, and want to pipe to my storage bucket.
I can get it working when I save FFmpeg output to a file, then createReadableStream from the file, and then pipe that to createWriteStream()
however, I dont want to generate a static file, and then go through that process every time
Why can I not just simply pipe FFmpeg.stdout.pipe(file.createWriteStream()) ?
FYI : I am running FFmpeg as a child process
spawnFFMPEG = () => {
this.ffmpeg = child_process.spawn('ffmpeg',
[
'-f', 'lavfi', '-i', 'anullsrc',
'-thread_queue_size', '512',
'-i', '-',
'-shortest', '-vcodec', 'copy',
'-f', 'avi',
'pipe:1'
]
)
this.ffmpeg.stdout.pipe(myWritableStream) -
avfilter/vf_scale : tag output color space
31 octobre 2023, par Niklas Haasavfilter/vf_scale : tag output color space
When using vf_scale to force a specific output color space, also tag
this on the AVFrame. (Mirroring existing logic for output range)Move the sanity fix for RGB after the new assignment, to avoid leaking
bogus YUV colorspace metadata for RGB spaces.