Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (31)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

Sur d’autres sites (7130)

  • fate : move lavd filters tests to the new system.

    29 avril 2013, par Clément Bœsch
    fate : move lavd filters tests to the new system.
    

    Also make life test a bit more useful.

    • [DH] tests/fate/avfilter.mak
    • [DH] tests/fate/filter-video.mak
    • [DH] tests/filtergraphs/scalenorm
    • [DH] tests/lavfi-regression.sh
    • [DH] tests/ref/fate/filter-lavd-life
    • [DH] tests/ref/fate/filter-lavd-scalenorm
    • [DH] tests/ref/fate/filter-lavd-testsrc
    • [DH] tests/ref/lavfi/life
    • [DH] tests/ref/lavfi/scalenorm
    • [DH] tests/ref/lavfi/testsrc
  • FFMPEG Error -1414092869 : Immediate exit requested

    8 juillet 2019, par Manity

    Hello i am using ffmpeg to play 4 videos at the same time.
    I am using a wpf/c# .net 4.7.2 wrapper for ffmpeg to do this.

    Occasionally get this error message, and the application just shuts down.
    there are no errors or exceptions thrown other than this one logged.

    Error -1414092869 : Immediate exit requested

    I have searched for a meaning to this error but can find nothing other than a vague reference to an android video player which does not provide me with any information at all.

    Can anyone shed any light at all, anything at all on the meaning of and cause of this above error and how it might be resolved ?.

  • Efficient command line to crop a video, overlay another crop from it and scale the result with ffmpeg

    26 mai 2018, par Witek

    I need to convert many videos in such a way that I take 2 different crops from each frame of a single video, stack them one over the other and scale down the result, creating a new smaller video.
    I want to convert this fullHD frame (two crop areas are marked red) to this small stacked frame.

    Right now I use the following code :

    ffmpeg  -i "video.mkv" -filter:v "crop=560:416:0:0" out1.mp4
    ffmpeg  -i "video.mkv" -filter:v "crop=560:384:1060:128" out2.mp4
    ffmpeg  -i out1.mp4 -vf "movie=out2.mp4[inner]; [in][inner] overlay=0:32,scale=280:208[out]"  -c:v libx264 -preset veryfast -crf 30 result.mp4

    It works but it is very inefficient and requires temporary files (out1 and out2). And the problem is I have over 100.000 of such videos (they are big and stored on a NAS and not directly on my computer’s HDD). Converting all of them with a Windows batch script (for loop) will take...48 days. Can you help me to optimize the script ?