
Recherche avancée
Médias (3)
-
Valkaama DVD Cover Outside
4 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
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (50)
-
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 (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
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 (4254)
-
anyone had success with OpenFP ? [closed]
30 mai 2013, par Robert Shawhttp://sourceforge.net/projects/open-fp/
Built and ran openfp - a sound fingerprinting project available in many places. Includes :
openfp_extract (calls ffmpeg) _server and _match.Hours today fiddling with the samples but I always get MATCH RESULTS 0, even with identical afp files in the signatures directory. What is the trick to get a match ?
Usings PCM 16 mono 22kHz . Do endian and signed matter as long as its always the same ?
I hope to try and match bird or animal sounds, anybody think it can work ?
Thanks in advance ! - Robert
-
Overlay frame PNG animation over video with FFmpeg
16 juillet 2021, par alex okochutinPreviously, I had no experience with FFmpeg and I really need help. And this is my first question on Stack Overflow. There is a task described below, I use ffmpeg-for-android.



We have an input (20 seconds long, 30 fps) mp4 video and for example 30 PNG images of the same resolution as video. We need to create a transparent looped 30 fps animation from the sequence of images. And after that, overlay the input mp4 video with the layer of the animation created in the first step. In this way if we have a 20 sec / 30 fps video and 30 images (1 second of animation), animation should be repeated 20 times during the video. Perhaps this problem can be solved more easily with the help of FFmpeg ?



Can anyone help me in this matter ?


-
Cutting video with FFMPEG produces corrupted video file [closed]
5 juillet 2024, par m0ntr3Im using FFmpeg library for trimming videos. The problem comes when I try to get a thumbnail from that video using MediaMetadataRetriever - getFrameAtTime() ; and on my logcat I can see this error - getFrameAtTime : videoFrame is a NULL pointer. This is the command I use to cut/trim the video files - "-ss", TrimmerUtils.formatCSeconds(lastMinValue),
"-i", String.valueOf(filePath),
"-t",
TrimmerUtils.formatCSeconds(lastMaxValue - lastMinValue),
"-async", "1", "-strict", "-2", "-c", "copy", outputPath
Im using Android Studio with Java if that does matter. Im only assuming its producing a corrupt file.


If someone can help me that would be very appreciated !