Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (43)

  • 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.

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

Sur d’autres sites (8480)

  • 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.

  • Anomalie #4497 (Nouveau) : [robustesse du hash du mot de passe utilisateur] : spip_auteurs.htpass

    26 mai 2020, par Guillaume Fahrner

    Le problème :

    La colonne "htpass" de la table spip_auteurs est à ce jour encore remplie avec le hash MD5 (https://www.php.net/manual/fr/function.crypt.php) de l’utilisateur. L’intérêt d’avoir une colonne "pass" avec un hash de bien (bien) meilleur qualité est donc nul lors d’un accès non autorisé à la BDD (compte admin compromis, injection SQL, etc).

    Solution proposée : avoir la possibilité de désactiver le calcul de ce champ qui (au pifomètre) n’est vraiment utile que de dans de très rare cas.
    Solution++ : que cette option soit activée par défaut avec une MAJ de DB qui supprime les anciennes valeurs.

  • overlaying .png without loosing transparency of .mov using FFMPEG

    3 octobre 2018, par drexdelta

    I am trying to overlay .png(transparent image) over .mov (transparent video) using this blog. I am using basic command like,

    ffmpeg -i inputVideo.mov -i overlay.png -filter_complex "overlay=100:254" output.mov

    while looking for solution, I found similar issue here , but it uses C#. I am looking for simple ffmpeg command. Thank you.

    EDIT : 1

    I found this . and there is no solution :( .