
Recherche avancée
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (9931)
-
PHP&FFMPEG, How to make sure the result video is suitable for web browsers ?
30 juillet 2016, par DrupalistI need to split a section of a video, paste a logo and also blur a video online. I know how to do these but the problem is, I don’t know how to make sure that the result video is suitable for web. For example there is a
mp4
video in my website which is playing via the browser, and using this code I cut a section of it :exec("ffmpeg -i ".$source." -ss ".$start." -to ".$end." -c copy ".$newVideo);
The problem is, when the distance between
$start
and$end
is more than a few minutes, the split operation is done but it is not played via browser.What codec or library do I need to add as filter to make sure that the result video is always playing on all modern browsers ?
-
avcodec/dpx : Read alternative frame rate from television header
7 décembre 2020, par Harry Mallon -
Compiling ffmpeg and using gas-preprocessor on Tiger ?
19 avril 2016, par TomBeginner trying to compile ffmpeg on a PowerMac G4, Mac OS X 10.4.11, Xcode 2.5 for use on this Mac (not iOS).
I started out with Stephen Jungels tutorial (link), although it doesn’t cover Mac OS X 10.4 per se. I install LAME, FAAC/FAAD and x264 without errors. All goes well until I use ./configure for ffmpeg :
./configure --enable-shared --enable-libmp3lame --enable-libfaac --enable-libx264 --enable-gpl --enable-nonfree
After some crunching, I get "Creating config.mak and config.h..." and an error "WARNING : GNU assembler not found, install gas-preprocessor". So I look for it online (https://github.com/yuvi/gas-preprocessor), move "gas-preprocessor.pl" to /usr/local/bin as instructed. Apparently it isn’t doing anything, as repeated configure gives the same error. Having gas-preprocessor.pl in the ffmpeg dir doesn’t seem to help either.
Am I missing something that I should be doing with gas-preprocessor.pl ?