
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (88)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (7122)
-
How to add subtitles to PowerPoint presentation
5 septembre 2018, par ppdlxOkay, to clear things up I will say that I’m posting here because I found the answer and want to help people in future who come upon the same problem. Since PowerPoint is not the right tool to title an presentation I will tell you my way of doing this. If you can do it in PowerPoint alone, super for you but I could not do it in PowerPoint alone, therefore this way. So what I did is the following, I simply recorded the presentation and made subtitles for it and in the final I hardcoded the subtitles into the video. Here is how I did it.
How to add subtitles to your PowerPoint presentation
First, I downloaded the latest SnagIt software from their official website. You can have a free trial there. Click here to download SnagIt. Then using SnagIt I recorded my whole screen and played the presentation. I made a video file of the presentation. Let’s call it presentation.mp4.
Then I downloaded my subtitle making software, an awesome open source program called Subtitle Edit from it’s official website. It’s really simple to use it and it is awesome and user friendly. It doesn’t take too long to subtitle a three minute presentation. When you are satisfied with the subtitles save them as .srt and call them whatever you like. Now we have a video file and corresponding subtitles for it.
Now we need to hardcode the subtitles into the video file, in other words to burn the subtitles to the video. I did this using another awesome open source software called ffmpeg. See the website and download it from official ffmpeg website. Extract it somewhere and for convinience put subtitle and video file to it’s bin directory. You can put it elsewhere if you like it that way. The first command I used is to transform .srt to .ass.
ffmpeg -i subtitles.srt subtitles.ass
Afterwards it’s easy to make a subtitled video file with the following command :
ffmpeg -i presentation.mp4 -vf ass=subtitles.ass presentation_subtitled.mp4
I am not sure for the command and can’t get now to see the correct command but if it fails you can seek help on this page.
Now that we have our presentation_subtitled.mp4 we can now trim the video to our likings.
ffmpeg -i presentation_subtitled.mp4 -ss 00:01:00 -to 00:02:00 -c copy presentation_final.mp4
Of course, edit the -ss and -to option, it’s the start time and the end time of your video.
That’s it ! Now you have your presentation_final.mp4 video file where you have your presentation with subtitles. Ffmpeg is awesome because you can convert it to any format you like.
You have some help with hardcoding subtitles on Subtitle Edit web page, but one software gave me a virus, one software didn’t work, and after trial and error this is the way that worked for me and it’s really convinied due to great open source software - Subtitle Edit and ffmpeg.
-
ffmpeg encoding sample wanted ?
24 juin 2015, par RellaI found this tutorial about ffmpeg the thing i do not get is how to encode video.
can any one, please provide a tutorial.. with explanations for that ? (not that i dont get this official one but i’d love to see more comments)
-
Evolution #4391 : Squelettes de la dist : améliorer le markup et passer à BEM
14 octobre 2019, par tcharlss (*´_ゝ`)Un autre point à ajouter possiblement au cahier des charges : passer les CSS en mobile-first.
Donc partir sur des<span class="CodeRay"><span class="directive">@media</span> (<span class="type">min-width</span>: <span class="error">N</span><span class="error">p</span><span class="error">x</span>)</span>
au lieu de
<span class="CodeRay"><span class="directive">@media</span> (<span class="type">max-width</span>: <span class="error">N</span><span class="error">p</span><span class="error">x</span>)</span>