Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (46)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (5650)

  • arm : x264_coeff_last8_arm

    16 mars 2014, par Janne Grunau
    arm : x264_coeff_last8_arm
    

    checkasm —bench on a coretex-a9 :
    coeff_last8_c : 173
    coeff_last8_armv6 : 151

    60 instead of 73 cycles in 130k runs on the same cpu while encoding.

    • [DH] common/arm/predict-c.c
    • [DH] common/arm/predict.h
    • [DH] common/arm/quant-a.S
    • [DH] common/arm/quant.h
    • [DH] common/quant.c
  • ffmpeg permission denied though the user has permission

    12 octobre 2014, par codename_subho

    I have installed ffmpeg in my server running ubuntu 14. my flask app project root is at /var/www/project/
    i am able to upload files and my python scripts are able to write new files, but when i run ffmpeg in my script it gives permission denied.
    Also running the below line in terminal

    ffmpeg -i path/to/inputfile /path/to/outputfile & ps aux | grep ffmpeg

    gives the user running the process is "ubuntu" which has write access to the project folder and its subfolders. As i told you other python script run by user "ubuntu" is able to create file.

    permission denied error happens in both cases(python script and directly in terminal)

    update :
    also looking at the confusion with the permissions, is there a way i can run the app from /home/ubuntu/project instead of /var/www/project. i am using mod_wsgi with apache for my flask-app.

  • avformat/http: increase BUFFER_SIZE to MAX_URL_SIZE + HTTP_HEADERS_SIZE

    11 mai 2020, par Joey Smith
    avformat/http: increase BUFFER_SIZE to MAX_URL_SIZE + HTTP_HEADERS_SIZE
    

    Some real-world sites use an authorization header with a bearer token ; when
    combined with lengthy request parameters to identify the video segment,
    it's rather trivial these days to have a request body of more than 4k bytes.

    MAX_URL_SIZE is hard-coded to 4k bytes in libavformat/internal.h, and
    HTTP_HEADERS_SIZE is 4k as well in libavformat/http.h, so this patch increases
    the buffer size to 8k, as that is the default request body limit in Apache, and
    most other httpds seem to support at least as much, if not more.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/http.c