Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (109)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (12376)

  • westwood_vqa : set video stream duration

    21 mars 2012, par Paul B Mahol

    westwood_vqa : set video stream duration

  • How do I programmatically create video from vector graphics ?

    22 mars 2012, par numan salati

    I have a bunch of vector graphics commands (lines, shapes and paths with timing info) and some images and audio files that I would like to encode into some video format like flv, mp4, avi

    Is there a tool that can help with do that - either programmatically or one that can be scripted ?

    Some background - I've a drawing tool in android where I want to save the resulting animation of the drawing into a video format to publish to vimeo/youtube. I can retrieve each stroke info (with timing) but I am not sure how to covert it into a video format.

  • Trying to load a video file with ffmpeg using javacv

    11 mars 2012, par Takatakas

    I am trying to load a video file with javacv but I am facing some problems.

    I managed to compile an application that will show an image on screen so I assume that my setup is ok.

    The code I am using is the following.

    import java.io.File;

    import com.googlecode.javacv.CanvasFrame;
    import com.googlecode.javacv.FFmpegFrameGrabber;

    public class TestCV{

       public static void main(String[] args) throws Exception {

           File f = new File("input.mp4");
           FFmpegFrameGrabber grabber = new FFmpegFrameGrabber(f);

           final CanvasFrame canvas = new CanvasFrame("My Image");

           canvas.showImage(grabber.grab());

       }
    }

    Here is the error

    Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\Users\takas\AppData\Local\Temp\jniavutil3690549951281752227.dll: Can't find dependent libraries
       at java.lang.ClassLoader$NativeLibrary.load(Native Method)
       at java.lang.ClassLoader.loadLibrary0(Unknown Source)
       at java.lang.ClassLoader.loadLibrary(Unknown Source)
       at java.lang.Runtime.load0(Unknown Source)
       at java.lang.System.load(Unknown Source)
       at com.googlecode.javacpp.Loader.load(Loader.java:337)
       at com.googlecode.javacpp.Loader.load(Loader.java:271)
       at com.googlecode.javacv.cpp.avutil.<clinit>(avutil.java:76)
       at java.lang.Class.forName0(Native Method)
       at java.lang.Class.forName(Unknown Source)
       at com.googlecode.javacpp.Loader.load(Loader.java:291)
       at com.googlecode.javacv.cpp.avcodec.<clinit>(avcodec.java:87)
       at com.googlecode.javacv.FFmpegFrameGrabber.<init>(FFmpegFrameGrabber.java:73)
       at com.googlecode.javacv.FFmpegFrameGrabber.<init>(FFmpegFrameGrabber.java:69)
       at tester.t.JavaFlow.main(JavaFlow.java:13)
    </init></init></clinit></clinit>

    Do I have to use separate ffmpeg dlls ? There is one ffmpeg dll in the opecv bin folder.

    If I have to do this I will need a better way to include them using eclipse. Until now I just add the folder to path variable. For example I added this to make opencv work.

    C :\opencv\build\common\tbb\ia32\vc10~;C :\opencv\build\x86\vc10\bin~;