Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (36)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

  • Creating uncompressed video files from sequences of images with partial looping

    18 septembre 2021, par Ethan Kendrick

    I have multiple sequences of 7 images. I would like to encode these 7 images into a 10 fps video file that cycles through the first 4 images in the first 4 frames, and then repeats the rest of the images in a looping order for a total of n frames. For example, a 32-frame video file as follows :

    


    12345676567656765676567656765676

    


    Is there a way to predetermine the order of the 7 frames, including duplicates (the repetition of images 5, 6, and 7) ?

    


  • reduce moviepy processing time

    3 septembre 2021, par Mahesh

    I'm adding image & text to a video at a particular time only, this is the only change I'm doing to the video. But in the moviepy progress bar I can see that it goes over the rest of the frames in video even after the specified timeline. Probably this extra processing is causing it to take much more time than just the code specified changes.

    


    Is there a way I can tell moveipy to ignore rest of the video & close the video file and exit ? this way probably it'll perform faster.

    


    Please also indicate if there is any other ways to speed up the performance of moviepy ?

    


  • Losing video when splitting mpg from middle [migrated]

    12 avril 2014, par ARip1979

    Very new to ffmpeg so bear with me.

    I'm trying to split an mpg in two pieces. It's a 4m 36s video. I want the first piece to be 170s and the second to be the rest. I have tried a bunch of different methods.

    ffmpeg -i input.mpg -vcodec copy -acodec copy -ss 00:00:00 -t 00:2:50 output1.mpg
    ffmpeg -i input.mpg -vcodec copy -acodec copy -ss 00:02:50 output2.mpg

    ffmpeg -i input.mpg -t 170 -c copy output1.mpg -ss 170 -c copy output2.mpg

    And a bunch of others. Every thing I've tried gives me a great first output1.mpg but output2.mpg is always missing the video. The file is saved as .mpg but it is only audio.

    I found one option that said to try this for the 2nd piece.

    ffmpeg -ss 170 -i input.mpg -t 176 -c copy output2.mpg

    and that sometimes there are errors so to try :

    ffmpeg -ss 170 -i input.mpg -t 176 output2.mpg

    With the possibility that omitting '-c copy' might result in a good output.
    So the first one above with '-c copy' gave me the same result, no video. The second option resulted in video and audio but the video was severely degraded in quality.

    Can anyone help me ? Why do I keep losing the video on the 2nd piece. I'm a newb but this seems pretty straight forward.

    Thanks in advance !