Recherche avancée

Médias (91)

Autres articles (85)

  • 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 (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (11456)

  • OpenCV (C++) Load images sequentially with name containing X

    4 avril 2016, par Alec Gamble

    I was wanting to create a program which would take every image within a certain directory (preferably with a specific image prefix) and store them in an array of Mats.

    subquestion :
    I’m creating the images using ffmpeg previously in the same program.

    system(
          "ffmpeg "
          "-i ..." // input file
          "-r 10 " // rate in Hz
          "..." // output location
          );

    What is the best practice for the location to output the images to considering that they’re to be temporary ? I’m building in XCode and am currently making an OSX application but I would ideally like to be able to port it to iOS. should I use /tmp ?

  • Implement sws_scale() with opencv

    21 mai 2017, par Aviv Sharon

    I need to convert an AVFrame (ffmpeg) to cv::Mat (or IplImage), from a yuv420 plain representation with AVFrame (3 data buffers, 1 for Y, 1 for U(size of Y/2), and 1 for V(size of Y/2)) to BGR24.
    This is possible using ffmpeg’s sws_scale() function, and it works fine.
    Now, I need to implement it using openCV (2.4.6), but I can’t find such answers on the web, how to merge 3 channels/Mats (YUV), different in size (420 representation), to a BGR24 (color formatting) Mat.
    Would love to get your kind help here.

    thanks !

  • Implement sws_scale() with opencv

    21 mai 2017, par Aviv Sharon

    I need to convert an AVFrame (ffmpeg) to cv::Mat (or IplImage), from a yuv420 plain representation with AVFrame (3 data buffers, 1 for Y, 1 for U(size of Y/2), and 1 for V(size of Y/2)) to BGR24.
    This is possible using ffmpeg’s sws_scale() function, and it works fine.
    Now, I need to implement it using openCV (2.4.6), but I can’t find such answers on the web, how to merge 3 channels/Mats (YUV), different in size (420 representation), to a BGR24 (color formatting) Mat.
    Would love to get your kind help here.

    thanks !