Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (39)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (7014)

  • How do I use ffmpeg to overlay an effect for a certain amount of time ?

    28 juin 2022, par A A

    There is a command for FFMPEG that applies a filter to the video

    


    ffmpeg -threads 2 -y -i 6.mp4 -vf rgbashift=rh=20:bh=-20 -hide_banner -y -vcodec mpeg4 -crf 23 -b:v 1000K -maxrate 1500K -bufsize 500K 7.mp4


    


    The question is how to make it overlap a certain time
For example from 00:01:10 to 00:02:20
and then from 00:03:01 to 00:04:00 ?

    


  • ffmpeg not giving output files in desired segmented time

    11 mai 2017, par Syam Pradeep

    I am capturing my screen and saving it locally with segment time as 1 sec.Here is the ffmpeg command

    ffmpeg -rtbufsize 1500M -r 10 -f dshow -i video="screen-capture-recorder" -map 0 -codec:v libvpx -minrate 6M -maxrate 6M -b:v 6M -f segment -flags -global_header -segment_format webm -segment_time 1 -preset ultrafast segment%03d.webmm

    The segmented videos are having a duration of 5 sec contrary to the segment time of 1s.

  • Merge video files based on the start time [closed]

    11 août 2020, par Nintendo Custom

    I have two MPEG-TS (h264) files with different start times. The first part overlaps the second part, so if you just put the files together, you have to see and hear the same part of the files twice.

    


    Can I merge the two files so that I have a file that does not show the same part twice ?
I was thinking that someone could code something that gets the start time and then the end time and then merge it with ffmpeg or something like that.