Recherche avancée

Médias (91)

Autres articles (33)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

Sur d’autres sites (6533)

  • Fastest method to add .ass (ssa, aegisub) SubStationAlpha subs to mp4 ?

    23 mai 2015, par user3762355

    So i have video file mp4, and without changing its quality i want to add ass hardsubs.
    i am doin this with ffmpeg :
    on windows :

    ffmpeg -i input.mp4 -c:v libx264 -preset:v medium -profile:v baseline -level 3.0 -movflags +faststart -vf ass=insubs.ass -bufsize 4000k -qp 27 result.mp4

    But it takes long time, or quality is bad.
    It have to be most compatible, so baseline, and good for web.

    How to do it faster ?
    When i change preset to ultrafast quality is very very bad.

    I dont want to use mkvtoolnix and handbrake or avisynth.
    And it has to be on Windows.
    It has to be something, possible to do with one simple bat file, very fast, good quality,small size, just like original mp4 only with subs hardcoded.
    Thanks.

  • Fastest method to add .ass (ssa, aegisub) SubStationAlpha subs to mp4 ?

    23 mai 2015, par user3762355

    So i have video file mp4, and without changing its quality i want to add ass hardsubs.
    i am doin this with ffmpeg :
    on windows :

    ffmpeg -i input.mp4 -c:v libx264 -preset:v medium -profile:v baseline -level 3.0 -movflags +faststart -vf ass=insubs.ass -bufsize 4000k -qp 27 result.mp4

    But it takes long time, or quality is bad.
    It have to be most compatible, so baseline, and good for web.

    How to do it faster ?
    When i change preset to ultrafast quality is very very bad.

    I dont want to use mkvtoolnix and handbrake or avisynth.
    And it has to be on Windows.
    It has to be something, possible to do with one simple bat file, very fast, good quality,small size, just like original mp4 only with subs hardcoded.
    Thanks.

  • FFMpeg converts locally but not on Ubuntu production server

    1er janvier 2016, par LargeTuna

    I am using ffmpeg & this command to convert a .mov to .mp4. It works locally but it will not work on the production server.

    Command: /path/to/ffmpeg inputFile.MOV -vcodec libx264 -pix_fmt yuv420p -profile:v baseline -preset slow -crf 22 -movflags +faststart outputFile.mp4

    I have checked to see that ffmpeg is installed on the Ubuntu 14.04.x prod server...

    /usr/bin/ffmpeg

    I get this error each time :

    libavutil      55. 11.100 / 55. 11.100
    libavcodec     57. 20.100 / 57. 20.100
    libavformat    57. 20.100 / 57. 20.100
    libavdevice    57.  0.100 / 57.  0.100
    libavfilter     6. 21.101 /  6. 21.101
    libavresample   3.  0.  0 /  3.  0.  0
    libswscale      4.  0.100 /  4.  0.100
    libswresample   2.  0.101 /  2.  0.101
    libpostproc    54.  0.100 / 54.  0.100
    Output #0, mov, to 'inputFile.MOV':
    Output file #0 does not contain any stream

    Thoughts ?