
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (7)
-
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 (...)
-
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (2730)
-
Nginx rtmp configurations
10 février 2015, par Mattia MalonniI have this problem
My /opt/nginx/conf/nginx.conf is like this
rtmp {
server {
listen 8080;
chunk_size 4096;
application in {
live on;
exec ffmpeg -i http://bstream.dyndns.org:8000/live/XXXXX/YYYYY/$name.ts -bufsize 100M -acodec aac -strict experimental -vcodec libx264 -g 30 -s 854x480 -vprofile baseline -f flv "rtmp://localhost:8080/live/%{name}";
}
application live {
live on;
}
}
}And the JWplayer is this :
<center><div>Loading the player</div></center>
<code class="echappe-js"><script type="text/javascript"><br />
jwplayer("player").setup({<br />
flashplayer: "/flash/jwplayer.flash.swf",<br />
file: "rtmp://MYIP:8080/live/191"<br />
});<br />
</script>Cant understand why not working
If i go to my stat page, i see something like this
http://i.stack.imgur.com/9PRNw.jpg
If i leave the player loading and try to execute the command (via terminal)
ffmpeg -i http://bstream.dyndns.org:8000/live/XXXXX/YYYYY/191.ts -bufsize 100M -acodec aac -strict experimental -vcodec libx264 -g 30 -s 854x480 -vprofile baseline -f flv "rtmp://localhost:8080/live/191"
Everything is OK
-
Centered text in FFMPEG
16 mai 2015, par Daniel TanIs there a simple way to show centered text (i.e. centered-aligned) with the drawtext filter in ffmpeg ?
Currently it is shown that x and y are parametric, and I used the
x=(w-tw)/2
to center text, but it only centers the whole text box.
-
ffmpeg - recode to lower bitrate + remove audio + watermark
26 avril 2014, par Ove SundbergI’m a complete noob to ffmpeg and I’m trying to do a couple of things in the same call :
1) recode a video to a lower bitrate
2) remove audio
3) add a watermark center bottom
4) save output as .webm
With a bit of RTFM and scouring for examples I have managed to achieve of 1, 2 and 4 with :
ffmpeg -i hires.mp4 -c:v libvpx -crf 10 -b:v 128k -r 24 -an -c:a libvorbis output-file.webm
This call adds a watermark center bottom :
ffmpeg -i hires.mp4 -i watermark.png -filter_complex "overlay=main_w/2-overlay_w/2:main_h-overlay_h-10" output-file.webm
Now I struggle to combine the two. The second -i option is the watermark. Therefore I would have thought that
ffmpeg -i hires.mp4 -c:v libvpx -crf 10 -b:v 128k -r 24 -an -c:a libvorbis -i watermark.png -filter_complex "overlay=main_w/2-overlay_w/2:main_h-overlay_h-10" output-file.webm
would do the trick. It does not off course, the error I get is
Option b:v (video bitrate (please use -b:v)) cannot be applied to input file watermark.png -- you are trying to apply an input option to an output file or vice versa. Move this option before the file it belongs to. Error parsing options for input file watermark.png. Error opening input files: Error number -22 occurred
So I have the options all messed up. I’ve tried moving the options around but with no luck. I’d really appreciate some help here.