
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (62)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP 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 (...)
Sur d’autres sites (8794)
-
the ffmpeg python library doesn't work on heroku
24 mars 2020, par Androeed HackThere is a python application (3.6.10) on Heroku. The app has functions for playing music in voice chat when using the FfmegAudio module. When calling the command, it returns an error :
...
raise CommandInvokeError(exc) from discord.ext.commands.errors ... AttributeError 'NoneType' object has no attribute 'stop'My app has a buildpack package
https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git
Localy everthing works. -
fluent-ffmpeg filePath to blob
10 avril 2020, par J DThe fluent ffmpeg library generates a screenshot of a given image/video, and returns a file path to that screenshot. I'm wondering if it is possible to get the blob/file object of that screenshot from the library directly ? Instead of having to reading it back in and converting to blob.


-
simple loop saying no file found terminal
29 mai 2021, par Frodo BagginsI have this command which I am trying to find all movie files in all directories, convert them, and remove the original, within all sub directories. It displays the file names but it returns no such file found.


for oggfile in "$(find . -iname '*.mp4' -or -iname '*.avi' -or -iname '*.mov')"
do
ffmpeg -i ${oggfile} -b:a 320000 -vcodec libx264 ${oggfile}_newCompressed.mp4
rm $oggfile
done ```