Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (86)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (8869)

  • ffmpeg, how to avoid audio drift when muxing audio and video

    1er mai 2023, par Monkeybus

    I use scrcpy to mirror my Android screen to my PC. I have to capture the audio via bluetooth.

    


    The result is two files. One .mkv and one .aac. They are both of equal length, possibly a second or two out.

    


    I mux them together, but the audio always drifts.

    


    I mux them together with the following command, $show is the bash variable for the video file.

    


    ffmpeg -i $show.mkv -ss -00:00:02 -i $show.aac -c:v copy -c:a copy -shortest $show.muxed.mkv


    


    The -ss sets the audio start time. I generally have to play around with this on a vid by vid basis. I can generally match the audio and video perfectly at the beginning of the file, but the audio will always drift over the course of the video.

    


  • Need to update FFmpeginvoke.cs

    3 octobre 2016, par hamidi

    I’m using a wrapper FFmpegInvoke.cs over ffmpeg for Windows. Since some videos are not playing, I decided to update ffmpeg to the latest version. For this, I downloaded it from its site and copied the dll’s to the project. But it seems that the wrapper, FFmpegInvoke.cs should also be updated. I don’t know how this file is added to the project. It has been a project I’ve got from someone else. So please help me handle this issue.
    Thanks

  • How to build a daemon to encode video files on S3 ?

    4 avril 2013, par Yuval Cohen

    I am interested in running a daemon to go over user uploaded video files and encode them in an optimal format (and add some watermarks).

    I was considering services such as Zencoder, Encoding.com, Amazon's encoding service but some lack overlaying capabilities and some are just too expensive for our (big) volumes.

    I want to build a daemon that encodes videos that are located on S3 once users upload them.

    The solution I thought of would be Python Heroku servers using Celery for a task queue to keep track of the encoded files and ffmpeg to do the actual work. However, I ran into troubles compiling ffmpeg for Heroku (with libass support, so the basic ffmpeg bins aren't enough).

    What approach/technology stack would you consider for this mini-project ?

    Thanks !
    Yuval