Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (44)

  • 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

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (6163)

  • lavfi/spp : add "quality" option in runtime change path

    10 janvier 2020, par Jun Zhao
    lavfi/spp : add "quality" option in runtime change path
    

    it's stranage to use option "level" in runtime change path but used
    "quality" in option, add "quality" in runtime change path, it's more
    intuitive and keep the "level" for compatibility.

    Reviewe-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_spp.c
  • aacsbr : silence message for SBR extension "padding".

    9 avril 2012, par Reimar Döffinger
    aacsbr : silence message for SBR extension "padding".
    

    Some files contain a few additional, all-0 bits.
    Check for that case and don’t print incorrect "not supported"
    message.

    Signed-off-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>
    Signed-off-by : Alex Converse <alex.converse@gmail.com>

    • [DH] libavcodec/aacsbr.c
  • Exception in thread "main" java.lang.NoClassDefFoundError : Could not initialize class org.bytedeco.javacpp.avutil"

    12 décembre 2016, par Ajinkya
    public static class AVFormatContext extends Pointer {
       static { Loader.load(); }
       /** Default native constructor. */
       public AVFormatContext() { super((Pointer)null); allocate(); }
       /** Native array allocator. Access with {@link Pointer#position(long)}. */
       public AVFormatContext(long size) { super((Pointer)null); allocateArray(size); }
       /** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
       public AVFormatContext(Pointer p) { super(p); }
       private native void allocate();
       private native void allocateArray(long size);
       @Override public AVFormatContext position(long position) {
           return (AVFormatContext)super.position(position);
    }

    I’ve tried to run a java application with an FFMmpegFrameGrabber while trying to run on windows. However same jar file runs on linux with no exceptions.

    I have included javacpp and javacv jars .

    However while running on windows I am getting this error
    main" java.lang.NoClassDefFoundError : Could not initialize class org.bytedeco.javacpp.avutil"

    Stacktrace of exception

    Exception in thread "main" java.lang.NoClassDefFoundError: Could not initialize
    class org.bytedeco.javacpp.avutil
           at java.lang.Class.forName0(Native Method)
           at java.lang.Class.forName(Unknown Source)
           at org.bytedeco.javacpp.Loader.load(Loader.java:413)
           at org.bytedeco.javacpp.Loader.load(Loader.java:381)
           at org.bytedeco.javacpp.avformat$AVFormatContext.<clinit>(avformat.java:
    2719)
           at org.bytedeco.javacv.FFmpegFrameGrabber.startUnsafe(FFmpegFrameGrabber
    .java:391)
           at org.bytedeco.javacv.FFmpegFrameGrabber.start(FFmpegFrameGrabber.java:
    385)
           at testffmpeg.NewStreamer.StartandRestart(NewStreamer.java:191)
           at testffmpeg.NewStreamer.<init>(NewStreamer.java:95)
           at testffmpeg.NewStreamer.main(NewStreamer.java:91)
    </init></clinit>