Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (55)

  • 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 bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (8265)

  • fate/mp3 : specify the number of output samples instead of filesize

    27 juillet 2015, par Anton Khirnov
    fate/mp3 : specify the number of output samples instead of filesize
    

    This is not dependent on the output format.

    • [DH] tests/fate/mp3.mak
  • avformat/dvdvideodec : fix menu PGC number off-by-one in state

    7 octobre 2024, par Marth64
    avformat/dvdvideodec : fix menu PGC number off-by-one in state
    

    Signed-off-by : Marth64 <marth64@proxyid.net>

    • [DH] libavformat/dvdvideodec.c
  • Concat a large number of videos with moviepy

    10 décembre 2016, par Anis Souames

    I’m using moviepy to create compilations automatically, I have around 20 mp4 videos with less than 2 mins each that are concatenated into one large video file using moviepy .
    However I’m facing a lot of difficulty because each time I try to concatenate this large number of videos I get an OSError: Cannot Allocate Memory Error . So the way I’m doing it is that I first create one part with 10 vids and a second part with 10 vids and then concat both of them. this method works however it’s very time and cpu consuming .

    Is there a straight forward way to concatenate a large number of videos ? My bot is running on an Ubuntu Server with 1GB of RAM and 10 GB of disk space . For 20 typical vids I have approxiamtely 60MB of vids to get processed and compiled . 1GB of ram should handle this without any problem. :

    Here’s the code I’m using :

    for video_name in videos_filename[0:len(videos_filename)/2]:
               try:
                   print video_name
                   clip = mv.VideoFileClip(video_name,audio = True)
                   clip = clip.resize(width = 720, height = 480)
                   video_clips.append(clip)
               except:
                   print "Error in adding clips.... Part 1"
           pdb.set_trace()
           final_clip = mv.concatenate_videoclips(clips = video_clips, method = "compose")
           finalFile = mv.write_videofile(someName,fps = 60, codec = "libx264")

    I’m sure that the mv.concatenate_videoclips(clips = video_clips, method = "compose) is responsible for the error that I’m getting, How can I fix that and stop using a partial solution ? Should I quit moviepy and use another module ? Maybe ffmpeg directly ?