Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (111)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (8277)

  • avutil/opt : Print out numeric values of option constants

    17 septembre 2019, par Soft Works
    avutil/opt : Print out numeric values of option constants
    

    It's often not obvious how option constants relate to numerical values.
    Defaults are sometimes printed as numbers and from/to are always printed as numbers.
    Printing the numeric values of options constants avoids this confusion.
    It also allows to see which constants are equivalent.

    Before this patch :

    -segment_list_type <int> E........ set the segment list type (from -1 to 4) (default -1)
    flat E........ flat format
    csv E........ csv format
    ext E........ extended format
    ffconcat E........ ffconcat format
    m3u8 E........ M3U8 format
    hls E........ Apple HTTP Live Streaming compatible

    Afterwards :

    -segment_list_type <int> E........ set the segment list type (from -1 to 4) (default -1)
    flat 0 E........ flat format
    csv 1 E........ csv format
    ext 3 E........ extended format
    ffconcat 4 E........ ffconcat format
    m3u8 2 E........ M3U8 format
    hls 2 E........ Apple HTTP Live Streaming compatible

    Signed-off-by : softworkz <softworkz@hotmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/opt.c
  • Anomalie #2728 : js de login déficient sous opera 11.64

    2 juin 2012, par denisb -

    j’arrive désormais à me logguer dans SPIP 3.0.1 SVN [19496] mais ticket toujours ouvert en ce qui me concerne pour SPIP 3.1.0-dev SVN [19499] opera version : 11.64 Révision : 1403 Plate-forme : Mac OS X Système : 10.6.8 Identification du navigateur : Opera/9.80 (Macintosh ; Intel Mac OS X (...)

  • FFmpeg sws_scale on changed area

    1er octobre 2016, par useprxf

    I was using sws_scale to convert a group of RGB32 images to YUV420 format. Each image is very similar to the previous one and they only differ on a rectangle region Q.

    My question is how to utilize Q to speed up the conversion process ? An additional parameter should be added to sws_scale function.

    sws_scale( ctx, in_plane, in_stride, sliceY, height, out_plane, out_stride, Q){
       // parameter out_plane stores the YUV420 data of previous image
       Instead of scanning the whole image, scan through rectangle Q{
           Do conversion
       }
    }