Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (69)

  • 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 ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (10175)

  • How to see reference list of a slice/frame of a video using FFprobe

    28 mai 2017, par Andy

    Suppose I have a avi/mkv/mp4 video, the video has some GOP structure( IPPP/IBBP etc) which can be seen from FFprobe. But can I see reference picture list(L0 and L1), that is frames from which B is using bi-directional prediction using FFprobe ?

  • Revision 7e0d0de211 : Refactor inverse_transform_block argument list Replace block index with transfo

    8 juillet 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/decoder/vp9_decodeframe.c



    Refactor inverse_transform_block argument list

    Replace block index with transform type in the argument list. This
    allows to save an extra fetch to the prediction mode. For pedestrian
    area 1080p coded at 5 Mbps with single tile, the average decoding
    speed goes up from 80.55 fps (before the refactoring series) to
    81.13 fps.

    Change-Id : Icbebf84ce63c19c0c92f3690ed201f6c3eab7881

  • How to list device options in ffmpeg with its avdevice C++ API ?

    7 avril 2024, par Pavel Saenko

    How to list all available device("dshow and v422 source for example") options(formats/resolutions/fps) and chose the preferred one from the C++ API ?

    


    I know that it is possible using CLI

    


    ffmpeg -f dshow -list_options true -i video="Integrated Camera"


    


    But how to use it into my C++ application ?

    


    I tried to find some useful fields inside the AVDeviceInfoList struct, but it doesn`t contains any options list.

    


     AVDeviceInfoList* deviceList;
 int deviceCount = avdevice_list_input_sources(inFormat, nullptr, nullptr, &deviceList);

 for (int i = 0; inb_devices; ++i) {
     qDebug()<devices[i]->device_name;
     qDebug()<devices[i]->media_types[0];
     qDebug()<devices[i]->device_description;
 }