
Advanced search
Medias (1)
-
Bug de détection d’ogg
22 March 2013, by
Updated: April 2013
Language: français
Type: Video
Other articles (27)
-
Publier sur MédiaSpip
13 June 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 April 2011, byMediaSPIP 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 April 2011, byUnlike 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 (...)
On other websites (5141)
-
Installing ffmpeg on CentOS 6.6
30 January 2016, by Kristaps DrozdovskisIm trying to install ffmpeg,..
When I write comand:git clone --depth 1 http://source.ffmpeg.org/git/ffmpeg.git
I got this error.. why??
Initialized empty Git repository in
/root/ffmpeg_sources/ffmpeg/ffmpeg/.git/ fatal: dumb http transport
does not support —depthInstalling from this source..
https://trac.ffmpeg.org/wiki/CompilationGuide/Centos -
Revision 68845: Horaire utilisé comme nom commun est masculin cf : ...
8 January 2013, by kent1@… — LogHoraire utilisé comme nom commun est masculin
cf : http://fr.wiktionary.org/wiki/horaire#Nom_commun -
Trim video with reference to a start time and end time using FFMPEG
8 February 2015, by SatyI am trying to do an application in which I would like to give option to user to clip a video using double seekbar so that video can be cropped.
I had hassle importing FFmpeg into Eclipse. However, that pain is over, and I got two points of video and can instantiate FFmpeg’s instant.
My focus is to know to know the method and procedure to crop a video.
I got the command of cutting it, that is,
ffmpeg -ss [start] -i in.mp4 -t [duration] -c:v copy -c:a copy out.mp4
However, how do I use this in code?