Recherche avancée

Médias (91)

Autres articles (44)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (5578)

  • vdpau/h264 : request MAIN rather than BASELINE VDPAU profile for CBP

    26 octobre 2014, par Rémi Denis-Courmont
    vdpau/h264 : request MAIN rather than BASELINE VDPAU profile for CBP
    

    The H.264 Constrained Baseline Profile (CBP) is a subset of both the
    Main Profile and the Baseline Profile. In principles, a hardware
    decoder that supports either of those can decode CBP content. As it
    happens, Main is supported by all VDPAU drivers, and Baseline is not.

    So favor map CBP to MP for now. Hopefully in the future libvdpau will
    offer an explicit choice for CBP.

    This fixes bug 757.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavcodec/vdpau_h264.c
  • Evolution #3928 : les emails sont publics dans le privé

    27 septembre 2020, par b b

    Le plugin "autorite" semble bien fonctionner, je viens de l’installer sur la dernière version de SPIP. Par contre il reste encore une brèche importante ouverte, malgré le plugin avec réglages par défaut, les rédacteurs peuvent quand même obtenir tous les emails via l’URL

    Faux, je viens de le tester, si la case de cette option n’est pas coché dans le plugin autorité (je me suis fait avoir en la cochant car le label est peut-être trompeur), un rédacteur n’a pas accès à ecrire/?exec=auteurs => Accès interdit / Vous n’avez pas le droit d’accéder à la page auteurs.

    Il n’y a donc pas de trou de brèche ou autre joyeuseté.

  • Fastest way to extract a specific frame from a video (PHP/ffmpeg/anything)

    10 juin 2014, par DanM

    I have a web page, which (among other things) needs to extract a specific frame from a user-uploaded video. The user seeks to a particular part of a .mp4 in the player, then clicks a button, and an ajax call gets fired off to a php script which takes the .mp4, and the exact time from the video, and uses that to extract a "thumbnail" frame.

    My current solution is using the php exec command :

    exec("ffmpeg -i $videoPath -ss $timeOffset -vframes 1 $jpgOutputPath");

    ...which works just great, except it’s as slow as molasses. My guess is that ffmpeg is a little too much for the job, and I might be able to do better by utilizing the underlying libraries or something... however I have zero idea how to do that.

    Ideally I don’t want to have to install anything that requires a real "installation process"... i.e., dropping an executable into the folder with my web app is fine, but I’d rather not have to actually run an installer. Also, the solution should be able to run on mac, linux and windows (though linux is the top priority).

    What can I do to speed this process up ?

    Thanks.