
Recherche avancée
Autres articles (86)
-
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 (...) -
Supporting all media types
13 avril 2011, parUnlike 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 (...)
Sur d’autres sites (5356)
-
FFMPEG install on Amazon Cloud9 IDE
27 mai 2021, par Scott TallaridaI am attempting to install FFMPEG on my cloud9 instance. Everything seems to be going peachy until I receive the following :


configure: checking for guile 3.0
configure: found guile 3.0
checking for guile-3.0... no
checking for guile3.0... no
checking for guile-3... no
checking for guile3... no
checking for guile... /home/ubuntu/.linuxbrew/opt/guile@2/bin/guile
configure: error: found development files for Guile 3.0, but 
/home/ubuntu/.linuxbrew/opt/guile@2/bin/guile has effective version 2.2



I am SUPER ubuntu newb but it seems there is some baked-in version conflict that is stopping this process ?


-
I have installed ffmpeg on amazon linux 2. How do I add it to the path permanently ?
17 mai 2021, par suyogxI have installed ffmpeg on amazon linux 2. But my application can't seem to find ffmpeg or ffprobe. How do I add these to the path permanently ? I tried doing it, but every time i logout of ssh, the value is erased from the path.


-
Save screenshots taken with FFmpeg into Amazon S3 bucket
30 mars 2021, par HomeAloneIn my python app I take screenshots of videos. I save them locally and it works just fine but now I want to save them in an Amazon S3 bucket.


subprocess.run(["ffmpeg", "-ss", "00:00:30", "-i", src, "-map", "0:v", "-vframes", "1", "pipe:pic.jpeg | aws s3 cp - s3://mypublicbucket"])



I get an
Unable to find a suitable output format
when running this command. What I try to do is to upload the picture straight into my public amazon bucket.