Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (45)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (7270)

  • Starting and stopping an ffmpeg pipeline in python

    25 septembre 2014, par user3147697

    I’m trying to start and stop an ffmpeg pipeline in my Python script. I can get it to start the pipeline on command, using a subprocess, but it ties up the script, so that it no longer receives commands. What do I need to change to keep this from happening ?

    I’m using :

       pipeline= "ffmpeg -f video4linux2 -video_size 640x480 -framerate 15 -input_format yuyv422 -i /dev/video7 -f alsa  -i hw:0,0 -map 0:0 -map 1:0  -b:v 120k -bufsize 120k -vcodec libx264 -preset ultrafast  -acodec aac -strict -2  -f flv -metadata streamName=myStream tcp://192.168.1.20:6666 "

       p = subprocess.Popen(pipeline, shell=True,
                            stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
       output = p.communicate()[0]
  • How to use random name for image file generated using ffmpeg-php ?

    13 octobre 2017, par Brains Akd

    The image is generating fine with the below code

    $thumbnail = 'images/thumbnail.jpg';

    // shell command [highly simplified, please don't run it plain on your script!]

    shell_exec("ffmpeg -i $video -deinterlace -an -ss 1 -t 00:00:01 -r 1 -y -vcodec mjpeg -f mjpeg $thumbnail 2>&1");

    But it creates a file named thumbnail.jpg
    I need to have random name for images generated to save it in the images folder and database. How can i generate a random name to thumbnail in the below code
    $thumbnail = 'images/thumbnail.jpg';

  • lavc/flac : Fix encoding and decoding with high lpc.

    12 mai 2015, par Carl Eugen Hoyos
    lavc/flac : Fix encoding and decoding with high lpc.
    

    Based on an analysis by trac user lvqcl.

    Fixes ticket #4421, reported by Chase Walker.

    • [DH] doc/decoders.texi
    • [DH] libavcodec/arm/flacdsp_init_arm.c
    • [DH] libavcodec/flacdec.c
    • [DH] libavcodec/flacdsp.c
    • [DH] libavcodec/flacdsp.h
    • [DH] libavcodec/flacenc.c
    • [DH] libavcodec/version.h
    • [DH] libavcodec/x86/flacdsp_init.c