Recherche avancée

Médias (91)

Autres articles (10)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (3322)

  • How to write a Batch/CMD file to check every 5mins if process stops then execute url ?

    10 septembre 2014, par user2068371

    So i use PHP to execute FFMPEG for video conversions and to save me manualy executing a URL to trigger the video conversions i figured it could be possible with a batch/cmd script.

    the process in question is named ffmpeg.exe

    And the url i need to execute is the following : website/index.php ?option=com_hwdmediashare&task=maintenance.process&format=raw&token=LOL

    I need to check if ffmpeg.exe is running every 5 minutes if not then execute that url or perhaps i am thinking it may be more simple to launch that url through php.exe itself.

  • any solution to Matlab VideoReader on compressed avi file on Mac ?

    3 décembre 2016, par Peng JL-Zhulin

    I am working on some video gamma correction. And I used some sample avi uncompressed clips from online, everything works just fine.
    But once I try to use our own .avi video 1280x800 20 second about 400mb, Matlab can not read file through ’VideoReader’.

    I’m really sure the problem is that my video is compressed avi. And I have tried the following to solve it :

    1. some say in mac os, download gstreamer 0.10 may help. I did, but problem remained.
    2. i tried to use ffmpeg to convert the compressed avi to uncompressed avi (i dont think i am supposed to do this tho). but the new uncompressed video became a mess.

    So, I was thinking, when working on compressed avi file in MATLAB in mac, is there a godd routine that people follow ?

    Thanks a lot.

  • ffmpeg motion interpolation for 2x and 4x slowmotion

    5 novembre 2018, par Eeyore Eeyore

    I recently learn that I can use minterpolate option of ffmpeg for frame interpolation in a video. One of the configuration of this option is fps(frame per second) and I am not sure how I should set it to generate 2x and 4x slow-motion videos.
    Here is how I use it right now :
    ffmpeg -i input.avi -filter "minterpolate=’fps=120’" output.avi

    seems like the generated output video doesn’t have equal number of frames generated between every 2 consecutive frames.
    Can anyone help me here or point me to a helpful document ?

    Thank you,