Recherche avancée

Médias (91)

Autres articles (49)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Gestion de la ferme

    2 mars 2010, par

    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"

Sur d’autres sites (7053)

  • Core : Update step validation to handle floating points correctly.

    15 juillet 2016, par adhayward
    Core : Update step validation to handle floating points correctly.
    

    Closes #1809, #1760, #921.

  • Core : Escape errorID for use in the regex, not to build aria-describedby

    19 octobre 2015, par Arkni
    Core : Escape errorID for use in the regex, not to build aria-describedby
    

    The error ID was being escaped for use in a regex, but these escaped
    characters were also being passed on to the aria-describedby value
    set in the HTML, which means the ID doesn’t match up with the ID of
    the element it’s referring to.

    Fixes #1523
    Closes #1587

  • GDB crashes when trying to attach to ffmpeg process that is ran by ASP.NET Core app

    13 mars 2019, par Dory

    I have an ASP.NET Core app that runs on windows and activates ffmpeg_g.exe,
    I am trying to attach a gdb.exe to the ffmpeg process,
    at first, it seems to work :

    • the ffmpeg process seems paused (the video that ffmpeg produces is stopped)
    • gdb is able to read the debug symbols from ffmpeg
    • I can see all ffmpeg’s threads, and switch to the thread that I interested in.
      (using threads command and thread number)
    • I can see the backtrace (with bt command)
    • I can set breakpoints
    • but when I run continue command or step, ffmpeg crashes immediately :

      [Thread 24620.0x63c8 exited with code 4294967295]
      [Thread 24620.0x6284 exited with code 4294967295]
      [Inferior 1 (process 24620) exited with code 037777777777]

    things that are may be relevant :

    • the ffmpeg is built on Ubuntu and it does work by itself
    • I was able to attach to ffmpeg with gdb, and it works ok
      when I run ffmpeg by itself and not from the .net-core app
    • the app and the cmd window from which I run gdb, run "as administrator"
    • I tried all combinations of the app and gdb, run as administrator or regular user.
    • I use GDB that comes with mingw-w64
    • I tried to run many gdb commands to find a clue to this,
      some made only ffmpeg to crash, but, for example
      if I run info program command, it crashes both ffmpeg and GDB.