Recherche avancée

Médias (91)

Autres articles (78)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • 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" (...)

Sur d’autres sites (11935)

  • FFmpeg command overlay watermark speed

    3 septembre 2021, par user892134

    I currently use the following command to add a watermark to 2GB video. This takes around an hour. I'm wondering if i can speed this up in anyway.

    


    ffmpeg -y -i input.mp4 -i watermark.png -filter_complex \"overlay=10:10\" -c:a copy -c:v libx264 -crf 22 -preset ultrafast output.mp4


    


    I'm using preset ultrafast, is there another command which can add a watermark quicker than what i'm using ? If not, how can i change command to show watermark every nth frames that won't show flicker e.g. every 5 frames ?

    


  • ffmpeg extract video unable to play

    30 juin 2021, par Khánh Phạm Đình

    I use ffmpeg to stream video and show up the camera's frame to window in the same time according to current code :

    


    file record_video_and_showup.sh

    


    ffmpeg -f v4l2 -framerate 30 -i $1  -c:v libx264 -preset superfast -crf 18 -pix_fmt yuv420p  -c:a libmp3lame -ac 2 -ar 44100 -b:a 128k -f tee  -map 0:v "$2|[f=nut]pipe:" | ffplay -an pipe:


    


    to record video and show up :

    


    ./record_video_and_showup.sh /dev/video0 test.mp4


    


    finally, we get file test.mp4 but can't play it on app such as vlc. When we open it on google chrome, it can run but the start and end time were incorrect.

    


    Can anyone help me ?

    


  • How can I create videos from images with transitions in C# ?

    4 septembre 2021, par Kjensen

    Using C# code, I want to take a number of images, add some music and create a video.

    


    I think I can best explain what I want in pseudo-code... :

    


    var video = new Video(1080, 1920); //create a video 1080*1920px 
video.AddFrame("C:\temp\frame01.jpg", 2000); //show frame for 2000ms
video.AddTransition(Transitions.Fade, 500); //fade from first to second frame for 500ms
video.AddFrame("C:\temp\frame02.jpg", 1000); //show frame for 1000ms
video.AddTransition(Transitions.Fade, 500); //fade from second to third frame for 500ms
video.AddFrame("C:\temp\frame03.jpg", 2000); //show frame for 2000ms
video.AddSound("C:\temp\mymusic.mp3"); //added from start of video
video.Save("C:\temp\MyAwesomeVideo.avi", Format.MP4);


    


    Does something like this exist ?

    


    I know there are a couple of older libraries, that can do some stuff with ffmpeg to create slideshows, but I looked at some of them, and they are insanely tricky to get working - and designed for something quite different.

    


    Backstory :

    


    I created a system for a cinema, which every week generates x number of images using movie posters, showtimes etc - and would like to take those images, turn them into a video which will be shared on social media.