
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 (111)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
De près ou de loin...
29 avril 2011, parIls ne le savent pas forcément mais sont indispensables
MediaSPIP est un logiciel open-source, il se base sur d’autres logiciels, et d’autres logiciels lui sont également nécessaires pour fonctionner ... Les personnes ici listées ne savent pas forcément qu’elles ont un rôle important dans le développement, elles ont apporté leur connaissances dans le cadre de la création d’une partie de ces éléments nécessaires ou ont écrit des articles permettant de comprendre certaines choses... il semble indispensable (...) -
Liste des distributions compatibles
26 avril 2011, parLe tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)
Sur d’autres sites (5867)
-
How to insert lots of small looped videos or GIFs in HTML (thousand or more), but keep decent quality and page size ?
10 novembre 2020, par Armen AvakianI need to place a thousand of small GIFs (20x20 pixels or slightly bigger) in the HTML. Almost all of them are visible at once, when page is loaded. There are several ways I tried, but each one has a problem.


Way 1. Placing GIF images. GIFs are inefficient and heavy, so a lot of traffic will be needed to load the page. WEBP is better, but it is not supported fully in recent versions of Safari. So I made GIFs smaller, with low quality. In Safari I am loading this low quality GIFs, in other browsers I load WEBP. And it works nice, but the problem is that with a thousand of small GIFs, a user will need to load more than 600 MB for this page... So this way is... not as good. I can make them even lower in quality, but I don't want to make experience worse. Even now the quality is average.


Way 2. Making MP4 and embedding them into looped video tags with autostart, so they look like a GIF. This way would be AWESOME, because MP4 is much smaller in size, but it keeps good quality. The problem here is when I add even 10-15 small videos in tags, the browser can't manage with it and starts working veeeery slowly. Each video is becoming very slow. So the experience is even worse than with low quality GIFs.


My question is – how to achieve best way in this case, keeping decent quality and low sizes for each video ? Maybe I can use somehow MP4 videos in another way ? Does anyone know how to solve this issue ?


For scaling videos and converting to GIF/WEBP I use ffmpeg.


-
What transcoding services can people recommend ? [closed]
3 mai 2013, par Adrian LynchA client of mine needs to accept a bunch of different video files and convert them to FLV. My experience with FFMEG on a previous project has highlighted that there will be some troublesome files.
Depending on the price my client will pay for a professional service.
What are people using and how are you finding the service ?
Thanks.
-
Creating video from audio and resized image using FFMPEG
26 septembre 2018, par nemeskeriorsIm trying to create an mp4 video from an mp3 and an image with ffmpeg. The video should be the size of 640x360 with black background and the image should be resized to fit in this dimensions and centred in the middle. The video’s length must match the mp3’s length.
Its basically a video creation for youtube from a song and an artwork.
For now i was able to achieve this with 3 steps :
- resize image :
-i %image% -vf scale='if(gt(a,4/3),640,-1)':'if(gt(a,4/3),-1,360)' %resized_image%
- create a music video with black background :
-f lavfi -i color=s=640x360 -i %audio_file% -c:v libx264 -s:v 640x360 -c:a aac -strict experimental -b:a 320k -shortest -pix_fmt yuv420p %video%
- put the resized image centred in the video :
-i %video% -i %resized_image% -filter_complex "overlay=(W-w)/2:(H-h)/2" -codec:a copy %final_video%
Is it possible to achieve all this with one ffmpeg command ?