Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (48)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (7207)

  • matroskaenc : allow override of "writing application" tag

    3 mars 2014, par John Stebbins
    matroskaenc : allow override of "writing application" tag
    

    Signed-off-by : Tim Walker <tdskywalker@gmail.com>

    CC : libav-stable@libav.org

    • [DH] libavformat/matroskaenc.c
  • ffmpeg native player started from spring application freezes

    21 mars 2018, par Jemo Mgebrishvili

    I have a spring-mvc project, from browser on button click I’m starting ffmpeg player (ffplay) for video/audio streaming, the problem is that, when player window is opened after the button click, it freezes and not responds, it shows one frame and stops frame updates but has audio voice, also I can’t move it and change player position, if I start the ffplay from cmd (outside from my app) it works fine.
    this is how I am starting the player

    Thread({
           val cmd = arrayOf("pathToTheffplay", "-loglevel", "verbose", "rtmp://localhost:portNum/streamName")
           val pb = ProcessBuilder(*cmd)
           pb.start()
           println("player started")
     }).start()

    what I am missing ? Any advice ?

  • pyglet's video example application not working

    3 octobre 2020, par C. E.

    I'm trying to get the pyglet video player example to work, but I'm getting the following error :

    &#xA;

    &#xA;

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

    &#xA;

    &#xA;

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

    &#xA;

    &#xA;

    Invalid data found when processing input

    &#xA;

    &#xA;

    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.

    &#xA;

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

    &#xA;

    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.

    &#xA;

    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.

    &#xA;

    What can I do ?

    &#xA;