Recherche avancée

Médias (91)

Autres articles (80)

  • 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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (8693)

  • Create slideshow video from PNG images - each in its own time position [closed]

    16 août 2023, par Paul

    I have several hundreds of PNG screenshots.

    


    Each screenshot file has following name format : yyyymmdd_hhmmss.png

    


    Time differences between these screenshots are irregular.

    


    How could I automatically create a slideshow video taking the first file as the point zero and maintaining other pictures' exact timings relative to the first one ?

    


    Can FFMPEG do this ? Which contents may have a batch file then ?

    


  • Do H264 P&B frames contain pixels values ?

    29 janvier 2019, par Ibrahim Radwan

    From what I understand, the I-frames are the ones containing the actual pixels values, and the P&B frames just contain some kind of indicators on how to construct the next frames from the already decoded frames.

    With that being said, shouldn’t I get a completely blue video, if I’ve only changed the I-frames to be completely blue pictures ?

    Thank you !

  • JavaCV capture a frame using FFmpeg

    4 décembre 2013, par Ioanna

    I create a class that capture frame from a video. When it capture a frame, it's saved as a picture. When the video is .avi, application works ok. When format is .avi.

    public static void main(String[] args) {

        FFmpegFrameGrabber grabber = new FFmpegFrameGrabber("C:/Users/Ioanna/Desktop/video1.avi");

        try {
            IplImage img;

            //Start grabber to capture video
            grabber.start();

            //grab video frame to IplImage
            img = grabber.grab();

            if (img != null) {        
                //save video frame as a picture
                cvSaveImage("capture.jpg", img);
            }

        }catch (Exception e) {      
        }
    }

    The error is

    Exception in thread "main" java.lang.ExceptionInInitializerError
       at com.googlecode.javacv.FFmpegFrameGrabber.<init>(FFmpegFrameGrabber.java:106)
       at Video.main(Video.java:75)
    Caused by: java.lang.IllegalStateException: Can&#39;t overwrite cause with java.lang.UnsatisfiedLinkError: no avcodec in java.library.path
       at java.lang.Throwable.initCause(Throwable.java:457)
       at com.googlecode.javacpp.Loader.load(Loader.java:581)
       at com.googlecode.javacpp.Loader.load(Loader.java:532)
       at com.googlecode.javacv.cpp.avcodec.<clinit>(avcodec.java:39)
       ... 2 more
    Caused by: java.lang.UnsatisfiedLinkError: no jniavcodec in java.library.path
       at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1837)
    </clinit></init>

    Do anyone know what is the problem ?

    Thanks in advance