
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (75)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (3906)
-
Why can't find ffmpeg || ffprobe error in Docker build even locally it's working fine
13 juillet 2023, par Haider AliI got this error : https://i.stack.imgur.com/glGAQ.png
from this code https://i.stack.imgur.com/q8dHd.png


I need to compress the video size to reduce the uploading time to server and using ffmpeg but this error in docker build even locally it's working fine. Now i need to remove this error . On the other hand everything woring fine, modules also installed.


-
ffmpeg nginx keeps working but outputs
25 août 2017, par Philip KirkbrideI have nginx compiled with the rtmp module. I start
nginx
and run the following to start streaming my webcam :ffmpeg -i /dev/video0 -f flv rtmp://localhost/live/test
Which works, I can then connect to my stream at
rtmp://localhost/live/test
The logs look like :
frame=51 fps=34 q=31.0 size=203kB time=00:00:02.60 bitrate=638.9
frame=66 fps=33 q=31.0 size=239kB time=00:00:03.10 bitrate=632.0
frame=82 fps=33 q=31.0 size=271kB time=00:00:03.63 bitrate=611.6
...With a new line being output every second or so. After streaming for 3-4 minutes I start getting logs like these about 5 per second :
Past duration 0.987877 too large
Past duration 0.911079 too large
Past duration 0.949013 too largeDespite the warnings the stream still seems to be live and working.
I believe nginx is triggering the following ffmpeg command :
exec ffmpeg -i rtmp://localhost:1935/encode/$name
-c:a libfdk_aac -b:a 128k -c:v libx264 -b:v 1000k -f flv -g 30 -r 30 -s 854x480 -preset superfast -profile:v baseline rtmp://localhost:1935/live/$name
;Does anyone know what this warning is referring to ?
-
How to make fast video editor on android ? [closed]
7 mai 2022, par Mr MisterI make photo/video editor like an instagram stories editor. I use ffmpeg to encode video on the phone. But it takes too much time. When I encode 30 second full-hd video it takes 1 minute. I use filters like : scale, crop, padding and drawtext.


I tried to divide videos into several parts. But my phone crashes when I try to process more than 2 videos at once.


Instagram encodes video extremely fast. Are there any alternatives to ffmpeg ? I'm currently interested in making video editor for android but I'll need it for IOS too.