Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (98)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (14120)

  • Fix RTM demo to show invalid icon when going from valid back to invalid

    14 octobre 2012, par Jörn Zaefferer

    m demo/milk/index.html Fix RTM demo to show invalid icon when going from valid back to invalid

  • brew install ffmpeg installs python 3.9

    13 novembre 2020, par mrgloom

    For some reason brew install ffmpeg downloads python 3.9 as dependence

    


    ==> Installing dependencies for ffmpeg: gnutls, python@3.9, glib, cairo, gobject-introspection, harfbuzz, libass and libvpx


    


    As I can see here https://formulae.brew.sh/formula/ffmpeg there is no dependence on python 3.9

    


    How can I install ffmpeg for my current python Python 3.7.7 ?

    


    Update :

    


    Maybe something is broken in my python installation ?

    


    brew info python&#xA;&#xA;python@3.9: stable 3.9.0 (bottled)&#xA;Interpreted, interactive, object-oriented programming language&#xA;https://www.python.org/&#xA;/usr/local/Cellar/python/3.7.7 (4,165 files, 64.0MB) *&#xA;  Poured from bottle on 2020-04-03 at 20:11:58&#xA;From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/python@3.9.rb&#xA;License: Python-2.0&#xA;==> Dependencies&#xA;Build: pkg-config ✔&#xA;Required: gdbm ✔, openssl@1.1 ✔, readline ✔, sqlite ✔, xz ✔&#xA;==> Caveats&#xA;Python has been installed as&#xA;  /usr/local/bin/python3&#xA;&#xA;Unversioned symlinks `python`, `python-config`, `pip` etc. pointing to&#xA;`python3`, `python3-config`, `pip3` etc., respectively, have been installed into&#xA;  /usr/local/opt/python@3.9/libexec/bin&#xA;&#xA;You can install Python packages with&#xA;  pip3 install <package>&#xA;They will install into the site-package directory&#xA;  /usr/local/lib/python3.9/site-packages&#xA;&#xA;See: https://docs.brew.sh/Homebrew-and-Python&#xA;==> Analytics&#xA;install: 588,344 (30 days), 666,372 (90 days), 666,373 (365 days)&#xA;install-on-request: 104,126 (30 days), 105,703 (90 days), 105,705 (365 days)&#xA;build-error: 0 (30 days)&#xA;</package>

    &#xA;

    brew info shows python@3.9 but actually it's 3.7.7 :

    &#xA;

    /usr/local/bin/python3 -V&#xA;Python 3.7.7&#xA;

    &#xA;

  • Regarding converting Webm to Mp4 using ffmpeg and getting problem with not receiving audio from the converted video file

    14 septembre 2022, par MikeEl

    I'm using react-ffmpeg npm package for converting the webm video format to mp4 format. Like here, this is the function which is used to convert the format.

    &#xA;

    const convertFunc = async(fileurl) => {&#xA;console.log("run");&#xA;const file = fileurl&#xA;console.log("before", file);&#xA;await FFMPEG.process(&#xA;  file,&#xA;  "-f mp4 -c:v libx264 -an -profile:v baseline -level 3.0 -movflags &#x2B;faststart -hide_banner",&#xA;  function (e) {&#xA;    console.log(e);&#xA;    &#xA;    const video = e.result;&#xA;    const reader = new FileReader();&#xA;      reader.readAsDataURL(video);&#xA;      reader.onload = function (e) {&#xA;&#xA;        &#xA;        console.log("Process time: ",reader.result);&#xA;      };&#xA;    console.log(video);&#xA;  }&#xA;);&#xA;

    &#xA;

    }

    &#xA;

    &#xA;

    -f mp4 -c:v libx264 -an -profile:v baseline -level 3.0 -movflags +faststart -hide_banner

    &#xA;

    &#xA;

    this line is used for convert the format. But when I received the converted file. It is muted or there is no audio in it.&#xA;In the ffmpeg command "-an" is used to remove audio from output converted video. But when I remove it from the above command then also audio is not there.

    &#xA;

    any solution ?&#xA;Thanks for you answers in advance.

    &#xA;