Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (25)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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 (4012)

  • FFMPEG 4 videos merge in one screen [duplicate]

    10 août 2018, par Farukh Zahoor

    This question already has an answer here :

    I found a sample that merge 2 videos on one screen

    ffmpeg.exe -i 1.mp4 -i 2.mp4 -filter_complex "[0:v]scale=iw/2:ih/2,pad=2*iw:ih[left];[1:v]scale=iw/2:ih/2[right];[left][right]overlay=main_w/2:0[out]" -map [out] -map 0:a? -map 1:a? -b:v 768k output.mp4

    I tried this command to merge 4 videos on one screen

    ffmpeg.exe -i 1.mp4 -i 2.mp4 -i 3.mp4 -i 4.mp4 -filter_complex "[0:v]scale=iw/2:ih/2,pad=2*iw:ih[upperleft];[1:v]scale=iw/2:ih/2[upperright];[2:v]scale=iw/2:ih/2,pad=2*iw:ih[lowerleft];[3:v]scale=iw/2:ih/2[lowerright];[upperleft][upperright]overlay=main_w/2:0;[lowerleft][lowerright]overlay=main_w/2:0[out]" -map [out] -map 0:a? -map 1:a? -b:v 768k output.mp4

    But this generates output similar to 1st command having 2 videos merged in one view. I need all 4 videos to be shown on one screen. Additionally I want audio of 1st video file should be used for output. Please guide

    The suggested duplicate link and examples merge videos with exact same quality and takes lot of time to generate output file. I want dimension of video should be changed to half and should quickly generate the output file. The example I shared working fine for 2 videos but not for 4 videos.

  • Pausing a ffmpeg screen capture ?

    21 octobre 2024, par LostXOR

    I have a script to record my screen using ffmpeg :

    



    ffmpeg -video_size 1920x1080 -framerate 60 -f x11grab -i :0.0 -c:v libx264rgb -crf 0 -preset ultrafast video.mkv

    



    I tried using pkill -STOP ffmpeg to pause the recording and pkill -CONT ffmpeg to resume it. The command seems to work correctly, pausing the recording process and later resuming it. However on playback, instead of instantly cutting to when I resumed ffmpeg, the video freezes for the duration I pause ffmpeg. Is there a way I can prevent the video from freezing, and instantly cut to when I resume recording ? (I can upload a sample clip if that would help clarify something.)

    


  • FFMPEG - Can i repeat input video to fix screen

    23 juin 2017, par DannyTuan

    I want repreat-x input video with output size.

    EX :

    - Input video : 320x720

    - Output Video : 1280x720

    - Image Demo : As shown below

    local/cache-vignettes/L300xH130/k7OOfpng-b62b621-4f049.png?1498507989

    What ffmpeg code can do it ?