Recherche avancée

Médias (0)

Mot : - Tags -/médias

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (12)

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

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

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

Sur d’autres sites (3546)

  • ffmpeg convert from H.264 (High 4:4:4 Profile) to H.264 (Main Profile)

    22 juin 2016, par user3002233

    How can I convert a video from H.264 (High 4:4:4 Profile) to H.264 (Main Profile) using ffmpeg ?

    I can’t do that with this command : ffmpeg -i 1/25359.mp4 -profile:v main out.mp4.

    That’d return an error :

    ...
    That'd return an error:
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '1/25359.mp4':
     Metadata:
       major_brand     : isom
       minor_version   : 512
       compatible_brands: isomiso2avc1mp41
       encoder         : Lavf56.40.101
     Duration: 00:00:06.08, start: 0.000000, bitrate: 1059 kb/s
       Stream #0:0(und): Video: h264 (High 4:4:4 Predictive) (avc1 / 0x31637661), yuv444p, 351x297, 1057 kb/s, 12.50 fps, 12.50 tbr, 12800 tbn, 25 tbc (default)
       Metadata:
         handler_name    : VideoHandler
    No pixel format specified, yuv444p for H.264 encoding chosen.
    Use -pix_fmt yuv420p for compatibility with outdated media players.
    x264 [error]: main profile doesn't support 4:4:4
    [libx264 @ 0x8fa9640] Error setting profile main.
    [libx264 @ 0x8fa9640] Possible profiles: baseline main high high10 high422 high444
    Output #0, mp4, to '1/24545.mp4':
     Metadata:
       major_brand     : isom
       minor_version   : 512
       compatible_brands: isomiso2avc1mp41
       encoder         : Lavf56.40.101
       Stream #0:0(und): Video: h264, none, q=2-31, 128 kb/s, 12.50 fps (default)
       Metadata:
         handler_name    : VideoHandler
         encoder         : Lavc56.60.100 libx264
    Stream mapping:
     Stream #0:0 -> #0:0 (h264 (native) -> h264 (libx264))
    Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
  • Exception in thread "main" java.lang.UnsatisfiedLinkError : no jniavutil in java.library.path

    29 novembre 2016, par tpm900

    I am trying to split a video into frames using FFmpegFrameGrabber (using code I have seen in tutorials) but am getting an exception as follows :

    The code :

    public BufferedImage getNextFrame() {
       FFmpegFrameGrabber fFmpegFrameGrabber = new FFmpegFrameGrabber("resources/WebPage.mp4");
       BufferedImage bufferedImage = null;
       opencv_core.IplImage i;
       try {
           fFmpegFrameGrabber.start();
           i = fFmpegFrameGrabber.grab();
           bufferedImage = i.getBufferedImage();
       } catch (Exception e) {
           e.printStackTrace();
           try {
               fFmpegFrameGrabber.stop();
           } catch (Exception e1) {
               e1.printStackTrace();
           }
       }
       return bufferedImage;
    }

    The stack trace :

    Exception in thread "main" java.lang.UnsatisfiedLinkError: no jniavutil in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1867)
    at java.lang.Runtime.loadLibrary0(Runtime.java:870)
    at java.lang.System.loadLibrary(System.java:1122)
    at com.googlecode.javacpp.Loader.loadLibrary(Loader.java:593)
    at com.googlecode.javacpp.Loader.load(Loader.java:489)
    at com.googlecode.javacpp.Loader.load(Loader.java:431)
    at com.googlecode.javacv.cpp.avutil.<clinit>(avutil.java:76)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:348)
    at com.googlecode.javacpp.Loader.load(Loader.java:453)
    at com.googlecode.javacv.cpp.avcodec.<clinit>(avcodec.java:87)
    at com.googlecode.javacv.FFmpegFrameGrabber.<init>(FFmpegFrameGrabber.java:73)
    at MP4VideoCodec.getNextFrame(MP4VideoCodec.java:16)
    at MP4VideoCodec.<init>(MP4VideoCodec.java:12)
    at main.main(main.java:7)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)
    Caused by: java.lang.UnsatisfiedLinkError: no avutil in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1867)
    at java.lang.Runtime.loadLibrary0(Runtime.java:870)
    at java.lang.System.loadLibrary(System.java:1122)
    at com.googlecode.javacpp.Loader.loadLibrary(Loader.java:593)
    at com.googlecode.javacpp.Loader.load(Loader.java:481)
    ... 15 more
    </init></init></clinit></clinit>

    How do I correct this exception ?

  • vdpau : Do not #include vdpau_x11.h from the main vdpau header

    8 décembre 2016, par Diego Biurrun
    vdpau : Do not #include vdpau_x11.h from the main vdpau header
    

    That header should only be included in the special bits that use X11 code.

    • [DBH] libavcodec/vdpau.h