
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (58)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip 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, parMediaSPIP 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, parPar 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 wangI 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 -
Combine images to video stream
8 mars 2016, par idementiaCan 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.-
One suggestion was to use FFmpeg recorder like it’s described here. Problem is recorder takes only
IplImage
type. I tried to createIplImage
withjavacv.cpp.opencv_core
, but it refers tojava.awt.*
stuff, which is not supported by android, so i catch crash. Moreover, usingIplImage
is highly unlikely because it is old format and because transformations ofMat
(that’s type that i have) toIplImage
takes a lot of formating steps withbyte[]
,BufferedImage
and other types of one to another. -
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 (likeexecFFMPEG
) 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. -