Recherche avancée

Médias (1)

Mot : - Tags -/ogg

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 (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

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

  • avformat/hls : add http 2.0 version number compare for the http_multiple

    4 juin 2019, par Steven Liu
    avformat/hls : add http 2.0 version number compare for the http_multiple
    

    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/hls.c