
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (84)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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 (...)
Sur d’autres sites (9422)
-
Excluding ARMv5 and ARMv6 devices from Google Play
14 mai 2015, par TarasI build a
ffmpeg
based library for my project and the outputs are really huge. Is it OK to remove the support of old arm processors and leave only arm-v7 and x86 libraries ?I suspect that arm-v7 won’t work on older arm processors.
The application min sdk is 4.0.3 and the question is whether the percentage of devices with old ARM is too small so I can filter them out on Google Play ?
-
Resizing an mp4 with ffmpeg reduces color quality
16 novembre 2019, par JulesInitially I’ve downloaded a video from an m3u8 to an mp4. The color of the downloaded video is fine at this point and mirrors the source. This is the command I’m using..
ffmpeg -i https://...default.m3u8 -acodec copy -vcodec copy download.mp4
My next step is to resize the source video from 1142 x 652, to create a new larger letter-box / pillar-box video of 1920 x 886
ffmpeg -i download.mp4 -vf "scale=(iw*sar)*min(1920/(iw*sar)\,886/ih):ih*min(1920/(iw*sar)\,886/ih),
pad=1920:886:(1920-iw*min(1920/iw\,886/ih))/2:(886-ih*min(1920/iw\,886/ih))/2" resized.mp4However the color of the resized video is different, it could be that the amount of colours has been reduced, but that’s just a guess.
-
FFMPEG output the wrong color when using it with BackColour / OutlineColour
5 mai 2023, par YoussefI have tried both OutlineColour, BackColour and BoxColour none of this worked well with colors, only black/white in both opaque and with transparency works. I am not sure how to fix this code, It's been 3 days searching for a solution


my color is E63946 clearly it's red




When making the necessary adjustments with the code below


const bgColorHex = '#E63946';
 const bgColorFFmpeg = bgColorHex.replace('#', '&H00');
 console.log(bgColorFFmpeg);



I use with the code below


const ffmpeg = spawn("ffmpeg", [
 "-i",
 "test.mp4",
 "-vf",
 `subtitles=${subtitlePath}:force_style='BorderStyle=3,Shadow=no,BackColour=${bgColorFFmpeg},OutlineColour=${bgColorFFmpeg}'`,
 "-c:a",
 "copy",
 "-progress", "pipe:1",
 outputPath,
 ]); 



This is the result I get




I tried other methods like with tinycolor, same issue


const bgColor = `&H${tinycolor(bgColorHex).toHex8().substr(2)}`;



Please help this is very confusing it should be easy to input a color into ffmpeg, text color on the other hand gave me no issue at all only this captions background is causing problems.


Let me know if you need more info