
Recherche avancée
Médias (91)
-
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
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (101)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (8110)
-
Is is possible to create custom shapes with ffmpeg ?
7 mai 2021, par nardoI am trying to create a xstack layout with ffmpeg commands and from what I have seen online it is only possible to create rectangles with all the videos merge them into one video. However, I am trying to create a layout with custom shapes with X and Y coordinates.




Would this be possible with ffmpeg or do I need another library or open source code base to create this ?


-
How to restart the Ip Camera through ffmpeg or gstreamer ?
11 avril 2022, par HARSH BHATNAGARI am dealing with 550 IP camera , in which camera randomly power off due to power supply issue .
I need to restart the camera when the camera is online .


I have tried the IP ping concept , ffmpeg grabbing frame concept but the issue when we are integrating 550 camera IP ping concept it gives the False Positive and not able to restart the all camera whereas ffmpeg grabbing frame concept sometimes ffmpeg stuck in the terminal .

All testing code written in python language .
[ Note : i can't used the opencv for 550 camera ]
Please give me the suggestion how to deal with the problem .

-
creating thumbnails from multiple videos
28 septembre 2020, par blueI have multiple videos, and i want to create a thumbnail image for each video.i also want the image thumbnails to have the same names as the videos and have specific width/height.

Is it also possible to have ffmpeg create thumbnails with a specific aspect ratio and instead of stretching the video it could add black bars ?

Now i don't know a thing about how ffmpeg works so i looked up a tutorial online and configured it,tested out a simple script and it worked.

i found what the script i was looking for but i don't know a thing about bash scripts so it just throws an error and i don't how to figure it out.


for f in *.mp4; do ffmpeg -i "$f" -ss 00:00:03 -vframes 1 -s 480x320 "${f%.mp4}.jpg"; done