
Advanced search
Other articles (103)
-
Gestion de la ferme
2 March 2010, byLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
Les autorisations surchargées par les plugins
27 April 2010, byMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Use, discuss, criticize
13 April 2011, byTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
On other websites (10623)
-
Evolution #4565 (Nouveau): Traduction des mois ave affdate
2 October 2020, by Laurent LefebvreUne petite idée d’évolution :
Traduire le mois dans la langue du site lorsque l’on utilise un formatage de type php date (ex : pour le 2/10/2020, [(#DATE|affdated F Y)] donnerait "2 octobre 2020" sur un site francophone.
-
Anomalie #2833 (Nouveau): Ajouter des chaines pour le format court des dates, par exemple 03/01/2...
25 August 2012, by kent1 -Ticket original déposé par Jaro sur http://trad.spip.net => http://trad.spip.net/ticket/ajouter-a-cordes-pour-le-format Lors de l’écriture de la date ou le mois en chiffres dans certaines langues, ces chiffres ne sont pas séparés par "/" ou l’ordre du mois et la date peut être différente (par exemple (...)
-
pyglet's video example application not working
3 October 2020, by C. E.I'm trying to get the pyglet video player example to work, but I'm getting the following error:




pyglet.media.codecs.ffmpeg.FFmpegException: avformat_open_input in
ffmpeg_open_filename returned an error opening file
/home/ce/Downloads/sample-mp4-file.mp4 Error code: -1094995529




I decoded this number, and it turns out that it corresponds to the "INDA" error code in FFMPEG's error.h, which means




Invalid data found when processing input




The example video that I used can be downloaded here. I tried the mp4 one, the avi one and the webm one. I also tried other files that I have locally. They all work in other video players, and in fact some were created using FFMPEG.


Finally, I used
pyglet.media.have_ffmpeg()
to make sure that pyglet agrees with me that I haveffmpeg
installed.

Originally, I had ffmpeg 3.4 installed globally, i.e.
which ffmpeg
pointed to a 3.4 binary. I then replaced that binary with a ffmpeg 4.1 binary. However, when I runpyglet.info.dump_ffmpeg()
it still say3.4.8
so I may not have suceeded in trying 4.1. I tried settingos.environ["LD_LIBRARY_PATH"]
but it is still printing3.4.8
.

Operating system: Ubuntu 18.04. I have gotten it to work on Ubuntu 20.04. It uses a newer FFMPEG which I suspect is important.


What can I do?