
Recherche avancée
Autres articles (63)
-
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 (...) -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (12626)
-
delay in audio sync after converting ac3 to aac
9 mars 2018, par samer metwallyI have a MKV video consist of a video and an audio of duration 10 minutes, after using ffmpeg to extract ac3 to aac audio, its duration became 10:50, which lead to audio out of sync with the video after packaging the new extracted audio to mp4 container using mp4box. how to solve the problem of syncing or as i knew, the delay that happen with aac encoding ?
commands :ffmpeg -i "d:/input.mkv" -vn -c:a aac "d:/audio.aac"
MP4Box
-add "C:/1280x720.264"
-fps "23.976023976024"
-add "d:/audio.aac:lang=ara" -
FFMPEG freezes last second when overlaying gif onto video
28 février 2023, par Peter.kI add gif to video with this code :


(base) E:\>ffmpeg -i tt102e.mp4 -ignore_loop 0 -i e:\gals\flags\RoyaumeUni.gif -filter_complex "[1:v][0:v]scale2ref=oh*mdar:ih/5[ua][b];[ua]setsar=1,format=yuva
420p,colorchannelmixer=aa=0.75[u];[b][u]overlay" -shortest -c:a copy -y tt102e-.mp4



This works, but last second, even about 1.5 is freezed - gif and video stops - only sound plays to the end. But if I change to
mkv
format, it goes other way - whole video and audio cuts 1.5 second - it's just shorter. When I usemts
format its ok, but the quality is low, because this produces 12-bit video, not 24. But if I add-vcodec libx264 -b:v 4000k
to get 24 bit and better than default bitrate it's again wrong - as the mp4 case. What is going on ?? Is it the case of using different codecs ? Gif is 24 bit, has unknown fps, bgra format. Could something be with it here ?

EDIT


Ok, found the problem quickly... Some SO answer was not actually precise, so I used the
-shortest
wrongly. It should be inoverlay=shortest=1
.

-
How to stream all videos in a folder ?
30 mai 2015, par KrishnenduHi i want to stream videos over web using ffserver. i got this link as reference.
Now what i am not able to figure out is how to pass a folder(which content all videos i want to stream) as input to stream all videos. I also want add more videos dynamically to this folder in time to time and streaming should happen(like how it works in Darwin). now i can’t use Darwin because it doesn’t support for iOS.
please give me a suggestion.
is there any other open source tool by which i can do this ?