Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (34)

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

  • How to create video with images and different time interval using ffmpeg

    8 janvier 2013, par XCoder

    It seems duplicate :
    How to create video with images and different time interval ?
    But it ain't duplicate since the author of the above question has framed the wrong title because the images are displayed for fixed time-interval.

    What I want to do is this

    1. Image 1 : 5 seconds

    2. Image 2-5 : 10 seconds

    3. Image 6 : 4 seconds

    Please let me know how can I achieve this using ffmpeg. I tried googling but found nothing as such.

  • FFMPEG Concat Demuxer adds more time to video than expected

    5 septembre 2023, par Shreyas

    I am using ffmpeg concat demuxer to join multiple(189) videos together.
The videos are originally split from a single video using the following command :

    


    ffmpeg -ss time[2] -vsync 1 -copyts -i inputfile.mp4 -ss time[0] -to time[1] -c:a copy -c:v libx264 -b:v 800k output.mp4


    


    Thereafter I am using the following concat command :

    


    ffmpeg -f concat -safe 0 -i list.txt -c copy output.mp4


    


    The problem is that the sum of the lengths of the input videos is 24:03:520
The output.mp4 video comes out to be 24:05:550.
Which is two seconds longer than the constituent video length.

    


    I need the output video to be time accurate. How can I achieve this without reencoding the video ?

    


  • Php and Mysql current video time duration using FFMPEG

    10 novembre 2014, par innovation

    I have one question about video time calculator.

    I am using this FFMPEG

    shell_exec("ffmpeg -i ../videos/$video_name.flv -f flv -s 320x240 ../videos/$video_name.mp4");
    shell_exec("ffmpeg -i ../video_images/$video_name.mp4 -vcodec png -ss 00:00:05 -s 360x288 -vframes 1 -an -f rawvideo ../video_images/$video_name.png");

    I want to add here to post total duration of the video.

    For example : I upload a video this video time 4:10 (4 minutes 10 seconds). I want to post it this time from table row.
    How can i do this anyone can tell me ?