Recherche avancée

Médias (91)

Autres articles (105)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (13936)

  • How can i add cover image on mp3 file using ffmpeg ?

    30 juillet 2012, par user1562502

    I'm trying to convert audio file to mp3 and I want to add cover image into mp3 file.
    I tried this :

    ffmpeg.exe -i "input audio file" -i image.png out.mp3

    When conversion completes there is no cover image into mp3.
    I tried and this which is from the official documentation of ffmpeg. The result is the same mp3 file without cover image.

    ffmpeg -i input.mp3 -i cover.png -c copy -metadata:s:v title="Album cover"-metadata:s:v comment="Cover (Front)" out.mp3

    Thank you in advance !

  • Detecting crosses in an image

    21 décembre 2013, par MrOrdinaire

    I am working on a program to detect the tips of a probing device and analyze the color change during probing. The input/output mechanisms are more or less in place. What I need now is the actual meat of the thing : detecting the tips.

    In the images below, the tips are at the center of the crosses. I thought of applying BFS to the images after some threshold'ing but was then stuck and didn't know how to proceed. I then turned to OpenCV after reading that it offers feature detection in images. However, I am overwhelmed by the vast amount of concepts and techniques utilized here and again, clueless about how to proceed.

    Am I looking at it the right way ? Can you give me some pointers ?

    Colored Image
    Image extracted from short video

    Binary image with threshold set at 95
    Binary version with threshold set at 95

  • Image sequence to video stream ?

    22 août 2015, par Hauns TM

    Like many people already seem to have (there are several threads on this subject here) I am looking for ways to create video from a sequence of images.

    I want to implement my functionality in C# !

    Here is what I wan’t to do :

    /*Pseudo code*/
    void CreateVideo(List<image> imageSequence, long durationOfEachImageMs, string outputVideoFileName, string outputFormat)
    {
       // Info: imageSequence.Count will be > 30 000 images
       // Info: durationOfEachImageMs will be &lt; 300 ms

       if (outputFormat = "mpeg")
       {
       }
       else if (outputFormat = "avi")
       {      
       }
       else
       {
       }

       //Save video file do disk
    }
    </image>

    I know there’s a project called Splicer (http://splicer.codeplex.com/) but I can’t find suitable documentation or clear examples that I can follow (these are the examples that I found).

    The closest I want to do, which I find here on CodePlex is this :
    How can I create a video from a directory of images in C# ?

    I have also read a few threads about ffmpeg (for example this : C# and FFmpeg preferably without shell commands ? and this : convert image sequence using ffmpeg) but I find no one to help me with my problem and I don’t think ffmpeg-command-line-style is the best solution for me (because of the amount of images).

    I believe that I can use the Splicer-project in some way (?).

    In my case, it is about about > 30 000 images where each image should be displayed for about 200 ms (in the videostream that I want to create).

    (What the video is about ? Plants growing ...)

    Can anyone help me complete my function ?