
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (99)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (13118)
-
How to set the same size for the input color as the video size ?
3 janvier 2021, par Yaroslav AkulovI have many videos with different widths and heights on which I need to overlay a random color. And I don't know how to set the same size for the color input as the size of each of all of my videos...


The exact color size only works for the video with the same size. But when the queue comes to another video with different width and height the error popping up.




for %%i in (*.mp4) do ffmpeg /
-i "%%i" -f lavfi -i "color=random@1:s=624x1110" /
-hide_banner -y -c:v libx264 -preset slow /
-filter_complex /
"[0:v]setsar=sar=1/1[ckout]; /
 [ckout][1:v]blend=shortest=1:all_mode=overlay:all_opacity=0.05[out]" -map "[out]" "output/%%~ni.mp4"



-
Application performance issue with Android 5.x devices
6 septembre 2015, par user1235389I am working on application which uses FFPMEG library for decoding live stream from camera :
-
It has been working perfectly fine on 4.x version.
-
But now on devices with OS 5.0.x , I am getting video loss when viewing the live stream from camera.
-
It is happening when i connect to 4 or 9 channel view mode. in that mode, after few seconds all channels loose connection and video loss happens.
from the investigation of logs, i see that after few seconds the ffmpeg library is removed or destroyed by Android OS 5.x.
This results in library getting destroyed and all channels loosing connection.
1- i dont know why OS removes library after sometime. Is it due to some memory issue ?
2 - Can anyone suggest me why this happens in Android 5.x devices ?
3 - Can anyone suggest me any memory test tools to check where the memory issue is happening.
Any support would help me understand what changes in 5.0 version for Android.
-
-
How do I add ffmpeg on Heroku for my Django Application ?
15 juillet 2021, par Prathik DevallaI'm trying to separate the audio from a video file (.mp4). Moviepy was not working on my local server, So I decided to use ffmpeg. However, when I deploy my app to Heroku, I'm not sure what buildpacks I would need.


Thanks !