Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (31)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (5660)

  • I want to create a video from images with transition applied

    29 mars 2023, par Kaleem Abbas

    I want to load images and create video with transition applied. I was able to create video but transitions are not being applied.

    


    ffmpeg -framerate 1/5 -start_number 1 -i "D :\video\photo\images%%d.jpg" -filter_complex "[0:v]split=5[0a][0b][0c][0d][0e] ;[0a]format=yuva420p,hflip[flip0] ;[0b]format=yuva420p[bg] ;[0c]format=yuva420p[bg1] ;[0d]format=yuva420p[bg2] ;[0e]format=yuva420p,hflip[flip1] ;[bg][flip0]overlay=x='min(-w*(t-1.5),0)':shortest=1[bg0] ;[bg0][bg1]overlay=x='min(-w*(t-0.5),0)':shortest=1,drawbox=t=fade:enable='between(t,0,1)':color=white[bg01] ;[bg01][flip1]overlay=x='min(-w*(t),0)':shortest=1,drawbox=t=fade:enable='between(t,0,1)':color=white[bg1] ;[bg1][bg2]overlay=x='min(-w*(t+0.5),0)':shortest=1,drawbox=t=fade:enable='between(t,0,1)':color=white[bg12] ;[bg12][1:v]overlay=shortest=1:x='if(gte(t,1),0,-w+(tw))':y=0,drawbox=t=fade:enable='between(t,0,1)':color=white[video]" -map "[video]" -c:v libx264 -crf 18 -preset veryfast -t 5 -vf "fade=t=out:st=4:d=1:alpha=1, wipe=w=0.5:h=0:y='H/2':x='if(gte(t,1),0,W-wt/2)':d=1" output.mp4

    


  • ffmpeg encoding sample wanted ?

    24 juin 2015, par Rella

    I 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)

  • How to add subtitles to PowerPoint presentation

    5 septembre 2018, par ppdlx

    Okay, 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.