Recherche avancée

Médias (91)

Autres articles (68)

  • Use, discuss, criticize

    13 avril 2011, par

    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.

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (10698)

  • videotoolbox : require hardware acceleration

    21 août 2015, par Stefano Pigozzi
    videotoolbox : require hardware acceleration
    

    VideoToolbox also implements a software decoder for h264, and will fallback to
    using it if the file cannot be decoded on the GPU. In these cases though,
    we want the hwaccel to fail so that we can use the libavcodec software decoder
    instead of the Apple one.

    Signed-off-by : wm4 <nfxjfg@googlemail.com>

    • [DH] libavcodec/videotoolbox.c
  • configure : Extend the neon intrinsics check

    22 juillet 2014, par Martin Storsjö
    configure : Extend the neon intrinsics check
    

    Check for an instruction that causes the (very old) Apple GCC 4.2
    to error out ("unrecognizable insn").

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] configure
  • ffmpeg -i an incoming file upload ? [closed]

    29 août 2020, par David542

    I'm not sure if this is more a JavaScript question or ffmpeg, but suppose I have a scenario where a user is uploading a 100GB file. And, before they upload it (or actually, as soon as we detect the first few frames or whatever), we want to make sure that it is a "valid" file — let's say for this question we want to verify that it is :

    &#xA;

      &#xA;
    • 29.97 fps
    • &#xA;

    • Video bitrate > X
    • &#xA;

    • Codec of com.apple.finalcutstudio.prores
    • &#xA;

    &#xA;

    What would be the best way to do this ? I was thinking something like :

    &#xA;

      &#xA;
    1. A user clicks the upload button and selects their file.
    2. &#xA;

    3. We upload the first 1MB of that file to our server — check that using ffmpeg (how to ignore errors or something with ffmpeg ?)
    4. &#xA;

    5. If the file passes our initial checks we upload the entire video file. If not, we raise a warning to the end user and stop the upload.
    6. &#xA;

    &#xA;

    How could this process be done ? I am seeking a JavaScript snippet (JS Fiddle ?) and a backend snippet (to receive the partial input and issue the ffmpeg commands).

    &#xA;