Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (101)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (10942)

  • FFmpeg post video stream to a webservice cause error 'chunked body too large'

    29 novembre 2017, par W. Dragon

    I have a webservice which is developped by Tornado. Now I use FFmpeg to post video stream data to service. After some time, the process is down and rise an error like :

    [I 170928 07:33:55 http1connection:253] Malformed HTTP message from 172.18.130.125: chunked body too large

    I use command like :

    ffmpeg -s 1240x720 -f video4linux2 -i /dev/video0 -b:v 0 -q:v 1 -f mpegts -c:v mpeg1video -b 800k -r 30 http://10.4.245.152:9090/video/live

    Should I use ffmpeg to continue post video stream to a webservice ?

  • Convert a video to audio on an android device (Java)

    25 mai 2012, par user1237578

    My problem is very basic, yet I find it incredibly hard to find a solution.

    I have made an android app which downloads videos from a server and is then supposed to convert them into mp3, because it's for music downloads. The problem now is that I can't really find a lightweight way of converting the videos.

    I have looked into a suitable ffmpeg library/wrapper already, but couldn't find a simple solution to use on the android. I'm already using ffmpeg on my windows machine, but it is console-based.

    All I need to do is convert mp4 into mp3 but somehow there doesn't seem to by any simple solution to find, also I'd rather not use an external web service because I can't rely on a website to always function, while my app should.

    I hope I've made myself clear, and thanks for taking the time to read this.

  • How do I limit resources for ffmpeg, called from a python-script, running in a docker container ?

    26 juillet 2019, par wotanii

    I deployed a service, that periodically does video encoding on my server ; And every time it does, all other services slow down significantly. The encoding is hidden under multiple layers of abstraction. Limiting any of those layers would be fine. (e.g. limiting the docker-container would work just as well as limiting the ffmpeg-sub process.)

    My Stack :

    1. VPS (ubuntu:zesty)
    2. docker-compose
    3. docker-container (ubuntu:zesty)
    4. python
    5. ffmpeg (via subprocess.check_call() in python)

    What I want to limit :

    • CPU : single core
    • RAM : max 2 GB
    • HDD : max 4 GB

    It would be possible to recompile ffmpeg if needed.

    What would be the place to put limits in this stack ?