
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (36)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (6250)
-
Subtitle not visible while converting GIF with ffmpeg
16 avril 2017, par 0rhodabasiI couldn’t make a subtitled gif with a proper quality and a subtitle. Here is my bash script :
start_time=00:00:45
duration=5
PALETTE="palette.png"
SUBTITLE="subtitles=sub.srt:force_style='Fontsize=24'"
FILTERS="fps=20,scale=400:-1:flags=lanczos"
ffmpeg -ss $start_time -t $duration -i $1 -vf "$FILTERS,palettegen" -y $PALETTE
ffmpeg -ss $start_time -t $duration -i $1 -i $PALETTE -lavfi "$FILTERS[x];[x][1:v] paletteuse" -y $2 -vf $SUBTITLEIt returns no error, just no subtitle on the output gif. There is a relevant question already here, but it didn’t work neither.
-
crystalhd : Fix up the missing first sample
15 octobre 2016, par Philip Langdalecrystalhd : Fix up the missing first sample
Why on earth the hardware returns garbage for the first sample of
a decoded picture is anyone’s guess. The simplest reasonable way
to patch it up is to copy the first sample of the second line. This
should result in the correct chroma values (because the data was
original 4:2:0 upsampled to 4:2:2) even if the luma is isn’t. -
Ffmpeg command not found in inside laravel. Even it is working in bash
14 février 2018, par Vimal MistryI am working in Laravel 5.4 project. I have to use ffmpeg for generate thumbnail from videos. I am using cloudlinux on my server. I installed ffmpeg in my server.
It is working fine in ssh bash. All the functionality working there.
But problem is when I am trying to call from inside laravel using exec() or shell_exec(). Its returns error like "sh : ffmpeg command not found". I tryied full path also like "/usr/bin/ffmpeg -etc-". In that case ’No file or directory found’ errors shows. While it is installed in this path. and working in bash command.Please give some suggestion or solution for it.