Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (75)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (12431)

  • Populated array contains 75 copies of same element

    9 juillet 2023, par wazzupek01

    I've got a problem with method i wrote. It's supposed to extract video frames from mp4 file and write them to list of BufferedImages. Inside while loop every image is different (i checked it by saving every frame extracted from list to file), but outside of the loop, all images in the list are identical.

    


    That's how the method looks like :

    


    private List<bufferedimage> getVideoFrames() {&#xA;        List<bufferedimage> frames = new ArrayList&lt;>();&#xA;        try (Java2DFrameConverter frameConverter = new Java2DFrameConverter()) {&#xA;            int pendingFrame = 0;&#xA;            int parsedFrame = 0;&#xA;            int skipFrames = (int) frameGrabber.getFrameRate() / 15;&#xA;            Frame frame;&#xA;&#xA;            while (parsedFrame &lt; OUTPUT_IMAGE_FRAME_QUANTITY) {&#xA;                frame = frameGrabber.grabFrame(false, true, true, false, false);&#xA;                if (pendingFrame % skipFrames == 0) {&#xA;                    frames.add(frameConverter.convert(frame));&#xA;                    parsedFrame&#x2B;&#x2B;;&#xA;                }&#xA;                pendingFrame&#x2B;&#x2B;;&#xA;            }&#xA;&#xA;            frameGrabber.stop();&#xA;        } catch (FFmpegFrameGrabber.Exception e) {&#xA;            logger.error(e.getMessage());&#xA;        }&#xA;&#xA;        return frames;&#xA;    }&#xA;</bufferedimage></bufferedimage>

    &#xA;

    I don't know what I'm doing wrong. This behaviour is somewhat surprising to me.

    &#xA;

  • valid() : Check all elements. Fixes #791 - valid() validates only the first (invalid) element

    24 juin 2013, par jzaefferer
    valid() : Check all elements. Fixes #791 - valid() validates only the first (invalid) element
  • aviocat : Check the argv array length before reading element i+1

    16 janvier 2014, par Martin Storsjö
    aviocat : Check the argv array length before reading element i+1
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] tools/aviocat.c