Recherche avancée

Médias (91)

Autres articles (55)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (10790)

  • Encoding parameters in videos for web (low in size) while keeping quality good enough ?

    10 juillet 2012, par umutto

    I'm trying to build a video sharing platform much like youtube. So far everything is going great, but i'm having difficulties with my encoding parameters in ffmpeg. I'm using a silverlight media player so the output file must be in wmv format.

    The only thing i can play freely was -qscale parameter and it gets shabby after 8. And i downloaded some youtube videos and they seem to keep amazing quality (definitely not -qscale 8 can achieve) with very low file sizes.

    So what i'm asking is some patterns that can help me convert a video to high, mid and low quality wmv videos.

    The codec i use right now is pretty simple and useless is like this ; (oh btw audio must keep 128k or higher quality for mid and high)

      ffmpeg -i a1.wmv -vcodec wmv2 -qscale 2 -s 852x480 -acodec wmav2 -ar 44100 -ab 128k -y a480.wmv
      ffmpeg -i a1.wmv -vcodec wmv2 -qscale 4 -s 640x360 -acodec wmav2 -ar 44100 -ab 128k -y a360.wmv
      ffmpeg -i a1.wmv -vcodec wmv2 -qscale 6 -s 354x200 -acodec wmav2 -ar 44100 -ab 128k -y a200.wmv

    the output quality i achieve with this command is more than enough but the sizes are usually 10 times larger than a youtube video near the same or less quality.

    Thanks in advance !

  • Anomalie #2460 (Fermé) : L’onglet « Ajouter des plugins » a disparu en rév. [18808] et [18813]

    16 décembre 2011, par cedric -

    il est normal que cette fonctionnalité ait disparu du core. C’est le plugin SVP qui la prendra en charge.

  • How to detect noisy R channel in ffmpeg ? [closed]

    17 novembre 2024, par davidvankemenade

    Does anyone know how ffmpeg can identify that the R channel in the example below is noisy ?

    


    waveform : noisy R channel
flac file with noisy R channel

    


    For reference, the following file's R channel is not noisy (except from the first few seconds) :

    


    waveform : normal R channel
flac file with normal R channel

    


    How could ffmpeg be used to classify the first file as "poor" and the second file as "OK" ?

    


    I've not yet been able to find an example to solve this problem.