
Recherche avancée
Autres articles (70)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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 (...) -
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 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 (6783)
-
Revision 49225 : google plus one
2 juillet 2011, par yaquoi@… — Loggoogle plus one
-
ffmpeg color space metadata not working for some sources
28 août 2023, par pawelI have a bit of a pickle. I'm trying to change incorrect tags on mp4 videos using ffmpeg.


I'm using this command (in a bat file) :


ffmpeg.exe -i %1 -colorspace "rgb" -color_primaries "bt709" -c copy -y %1.sRGB.mp4


I'm on windows and I'm using ffmpeg 6.0


The above command sets the tags for some videos correctly for for others does nothing. The file sizes change but ffprobe still shows me the old tags. It doesn't matter what color spaces I request or if I use numbers or strings.


The only difference I can see in the source videos (ffprobe) is the SAR and DAR section.


Stream #0:0[0x1](und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709/bt709/iec61966-2-1, progressive), 3840x2160, 91942 kb/s, SAR 1:1 DAR 16:9, 29.97 fps, 29.97 tbr, 30k tbn (default)


Stream #0:0[0x1](und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709/bt709/iec61966-2-1, progressive), 3840x2160 [SAR 1:1 DAR 16:9], 119433 kb/s, 29.97 fps, 29.97 tbr, 30k tbn (default)


the values are still the same but the grouping is different. the second one is the one that is not working through ffmpeg.


do I need to provide more information on the commandline ? direct it to a stream I want to alter ? I'm a bit out of my depth here and google is not helping much on this.


EDIT : updated to latest ffmpeg and I get warnings telling me that my commands were ignored :


Codec AVOption colorspace (color space) has not been used for any stream. The most likely reason is either wrong type (e.g. a video option with no video streams) or that it is a private option of some encoder which was not actually used for any stream.


however I get the same warnings on the mp4s that worked fine before and it is no longer working in the latest ffmpeg.


my goal is to get from :


Stream #0:0[0x1](und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, gbr/bt709/bt709, progressive)


to :


Stream #0:0[0x1](und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(progressive)


basically I want to remove bt709 tag from it


-
Generate color palette from an image for FFmpeg
18 mars 2018, par PeterI want to generate color palette from an image but FFmpeg allows to generate palettes only from videos. The only Bash tool I know that can generate color palettes from images is ImageMagick, but it generates palettes in a
*.txt
and I need a*.png
palette.Is there a bash tool to generate palettes with fine control ? Or maybe there is a way to do it in FFmpeg ?
P.S. I need that palette to create GIF in FFmpeg.