Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (4)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (1677)

  • 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.

    


  • 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 ?

    


  • 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 ?