
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (48)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (9037)
-
FFmpeg output image distorted occasionally
7 août 2021, par srelliottI'm using FFmpeg to export a poster image, but occasionally it exports an image that has different dimensions than the video. I basically end up with a nearly square poster image (distorted), but a video that plays at the correct dimensions. The particular issue I'm noticing it on is with a source video that's a .mov file with yuv422p. I'm converting all videos to .mp4 (yuv420p) in a different command.


My image output command is :


ffmpeg -ss 3 -i sourceVideo.mov -f image2 -vframes 1 -pix_fmt yuv420p -vf scale=720:-2 outputImage.jpg



The log for this particular source video shows this :


Stream #0:0(eng): Video: dvvideo (dvh3 / 0x33687664), yuv422p(progressive), 1280x1080 [SAR 3:2 DAR 16:9], 115084 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 29.97 tbc (default)


When the image is generated, the resulting distorted image is 720x608. It seems the image is being exported based on the Sample Aspect Ratio (SAR) instead of the Display Aspect Ratio (DAR). I expect it to export at something more like 720x405. If manually resized to 720x405, it looks fine.


The image output log shows :


Stream #0:0(eng): Video: mjpeg, yuvj420p(pc), 720x608 [SAR 608:405 DAR 16:9], q=2-31, 200 kb/s, 29.97 fps, 29.97 tbn, 29.97 tbc (default)


ADDITIONAL INFO


When the .mp4 video is exported (separately through a different command), the video is displaying in the html5 player at something more like 1280x720 (which matches the DAR) and looks just fine.


Stream #0:0(eng): Video: h264 (libx264) (avc1 / 0x31637661), yuv420p(bottom coded first (swapped)), 1280x1080 [SAR 3:2 DAR 16:9], q=-1--1, 0.03 fps, 30k tbn, 29.97 tbc (default)


**If the distorted image is opened in Photoshop, it throws an alert about pixel aspect ratio correction, then adjusts it to display the image correctly.


-
How to check when image is changing in video ?
25 juillet 2015, par LeeI need to check when image is changing in one simple video.
Because I’m making program in C# - witch is can extract music scores from Youtube video.
So, I’m using FFmpeg.NET for extract to image files.
But, do each one second - it is not economic.
I have one sample video : https://youtu.be/4EYLmwbkLDM
here, the first image is 0:00, second is 0:14, third is 0:40
So, How can I know when score image is changing ?
Thanks in advance !
-
Overlay/fade image over beginning of MKV with ffmpeg
17 mars 2021, par SpunkieI've got an MKV that I would like to replace the first 5 seconds with a static png image that fades in/out from black. How can I accomplish this with just ffmpeg ?