Advanced search

Medias (1)

Tag: - Tags -/ipad

Other articles (103)

  • Gestion de la ferme

    2 March 2010, by

    La 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, by

    Mediaspip 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, by

    Talk 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 Lefebvre

    Une 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 have ffmpeg 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 run pyglet.info.dump_ffmpeg() it still say 3.4.8 so I may not have suceeded in trying 4.1. I tried setting os.environ["LD_LIBRARY_PATH"] but it is still printing 3.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?