
Recherche avancée
Autres articles (67)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...)
Sur d’autres sites (11648)
-
FFMPEG - How to get a blur effect, without altering the color white ?
17 août 2016, par HugoI need a picture, with blur effect background. I found the code works, but, the white color of the photos is lost ( only happens with white color)...
Step1 : ffmpeg -i eyes.jpg -s 640x360 -qscale 1 bg.jpg Step2 : ffmpeg -i bg.jpg -filter_complex "[0:v]crop=640:360:0:0,boxblur=20[fg] ;[0:v][fg]overlay=0:0[v]" -map "[v]" -qscale 1 bg.jpg -y Step3 : ffmpeg -i bg.jpg -i eyes.jpg -filter_complex "overlay=(main_w-overlay_w)/2 :(main_h-overlay_h)/2" -qscale 1 result.jpg
Original photo :
see original photoResult (white color is lost)
see result photoPlease I need help (The white color should remain).
Thank you very much,
Greetings,
Hugo -
mp3 and multiple image convert to mp4 [on hold]
16 mai 2017, par Henrik C WibergI need some guidance to convert an mp3 audio file, along with multiple photos to an mp4 file, using php/laravel.
It must end with a mp4 file with a slideshow of images along with an audio file.
How do you recommend me to begin the task ?
I have this Json :{
- data [
{
id: 1,
name: "item 1",
image: "image_1.jpg",
start: "2017-01-01T02:00:00",
end: "2017-01-01T02:30:00"
},
{
id": 2,
name: "item 2",
image: "image_2.jpg",
start: "2017-01-01T02:31:00",
end: "2017-01-01T02:50:00"
},
{
id": 3,
name: "item 3",
image: "image_3.jpg",
start: "2017-01-01T02:51:00",
end: "2017-01-01T03:00:00"
}
],
- meta {
audiofile: {
mp3: 'example.com/audio/audiofile.mp3',
start: "2017-01-01T02:00:00",
end: "2017-01-01T03:00:00"
}
}This json must be converted to one mp4 file, where image has to be placed and displayed on a timeline while ’audiofile.mp3’ is playing.
Or do you know some code samples I can see ? :-)
-
FFMpeg create a video from a large number of images
15 décembre 2016, par Herman YanushSo I have a directory, where script ran by cron puts photos from my webcam. And I want to make a sort of timelapse. So i want to join this images to a video, one image = new frame (no delay).
So i have a jpg images filenamed
YYYY-MM-DD_HH_MM-webcamshot.jpg
And i want to join them into a mp4 video.
I found out that i can do it with FFMpeg for ex. with this command
ffmpeg -pattern_type glob -i '*.jpg' -c:v libx264 output.mp4
(from here)But unfortunately this only joins the first 600 (or a bit more) of 2.5K images in the directory.
So i want to know :
-
Can FFMpeg join more images (maybe unlimited amount) ?
-
Is it problem of using -pattern type glob instead of wildcard ?
-
If it can’t, how to split images into directories and make videos from these directories and then join or rename images to format like
img01729.jog
so wildcardimg%04.jpg
can be used ?
FFMpeg on Linux Mint (ubuntu 16.04).
-