Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (58)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (9065)

  • installing ffmpeg on Mac fail

    23 juillet 2022, par wei wang

    I tried to install ffmpeg on Mac(macOS 10.13) with : brew install ffmpeg

    


    but I got below ....

    


    Updating Homebrew...
Warning: You are using macOS 10.13.
We (and Apple) do not provide support for this old version.
You will encounter build failures with some formulae.
Please create pull requests instead of asking for help on Homebrew's GitHub,
Twitter or any other official channels. You are responsible for resolving
any issues you experience while you are running this
old version.

Error: ffmpeg: no bottle available!
You can try to install from source with:
  brew install --build-from-source ffmpeg
Please note building from source is unsupported. You will encounter build
failures with some formulae. If you experience any issues please create pull
requests instead of asking for help on Homebrew's GitHub, Twitter or any other
official channels.


    


  • avcodec/nvenc : add UHQ to AV1 for NVENC

    8 janvier, par Diego de Souza
    avcodec/nvenc : add UHQ to AV1 for NVENC
    

    This commit adds support for Ultra High Quality mode for AV1 on
    NVIDIA GPUs.

    Signed-off-by : Diego de Souza <ddesouza@nvidia.com>
    Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavcodec/nvenc.h
    • [DH] libavcodec/nvenc_av1.c
  • Combine images to video stream

    8 mars 2016, par idementia

    Can anyone please tell what is the easiest way to complete topic task in android studio ?
    I found some solutions but was unable to set to work any of them.

    1. One suggestion was to use FFmpeg recorder like it’s described here. Problem is recorder takes only IplImage type. I tried to create IplImage with javacv.cpp.opencv_core, but it refers to java.awt.* stuff, which is not supported by android, so i catch crash. Moreover, using IplImage is highly unlikely because it is old format and because transformations of Mat (that’s type that i have) to IplImage takes a lot of formating steps with byte[], BufferedImage and other types of one to another.

    2. Another way i tried from here. It looked acceptable - to process multiple .jpeg to video stream with codecs. But as far as i understand problem is that FFmpeg is not provided as complete stand-alone SDK lib for android. And almost all web-links to source FFmpeg-files which could contain methods (like execFFMPEG) are already dead.

    In general, topic task must not be hard : to combine simple video stream with given set of images, fixed fps and video coder (i don’t even need audio stream). In practice, i’m already overheaded with tones of infos and still not a step closer to solution.
    Thanks in advance.