Recherche avancée

Médias (91)

Autres articles (77)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (11312)

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

  • ffmpeg : add hyperlink to video ?

    15 mars 2012, par Simon

    i am experiment with ffmpeg, making videos from more images and adding watermark, some effect etc.

    What I am interested : Is it possible to embed HYPERLINK into video using ffmpeg ?

    For example, watermark or something else to be 'clickable' and to redirect to some www location ?

  • Android NDK - FFMpeg, correct video seeking

    15 mars 2012, par sherman

    I want change the seek frame while playing video. I do :

    void Java_ffvideolivewallpaper_frankandrobot_com_NativeCalls_seekFrame(
    JNIEnv *env, jobject this, jint time)

    if (av_seek_frame(pFormatCtx, videoStream, time, AVSEEK_FLAG_ANY) &lt; 0)
       __android_log_print(ANDROID_LOG_DEBUG, "ERROR SEEK!!!->>>",
               "av_seek_frame failed.");

    Video is displayed incorrectly. How do this correctly ?