Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (75)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (8218)

  • Revision 4e2732c3c3 : Separate encode_block for pass 1 and 2 The encode_block for pass 1 takes simple

    23 octobre 2013, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodemb.c



    Separate encode_block for pass 1 and 2

    The encode_block for pass 1 takes simpler functionalities and can
    save a few branches. The main reason is to make encode_block only
    used after running rate-distortion optimization search in pass 2,
    hence allowing dual buffer stack approach later.

    Change-Id : I9e549ffb758e554fe185e48a07d6e0e01e475bcf

  • Displaying RTSP-Stream using Xuggler : org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 34 60, bytestream (td)

    10 avril 2016, par Wenonah

    I’m new to displaying RTSP-Streams and Xuggler, so I really don’t know what to do.

    I’m trying to display the Main-Stream of my IP-Camera in a Java-Swing Window and get this :

    enter image description here

    I also get these errors :

    13:21:45.941 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 8 7, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 34 60, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 8 36, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 68 62, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 118 38, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 60 62, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] cabac decode of qscale diff failed at 1 7
    13:21:46.940 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 1 7, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 28 37, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 18 35, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 17 41, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 53 32, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 31 29, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 21 29, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] left block unavailable for requested intra mode at 0 35
    13:21:49.902 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 0 35, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 17 21, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 46 10, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 109 28, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 60 10, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 11 14, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 101 9, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 76 9, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 86 11, bytestream (td)
    17:47:04.192 [main] ERROR org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 60 24, bytestream (td)

    This is part of the code that I use :

    private IMediaListener mediaListener = new MediaListenerAdapter() {

       @Override
       public void onVideoPicture(IVideoPictureEvent event) {
           try {
               BufferedImage bi = event.getImage();
               if (bi != null)
                   updateWindow(bi);
           } catch (Exception ex) {
               LOG.error("Error getting Image from IVideoPictureEvent: " + ex);
           }
       }
    };

    public DisplayWindow() {
       display();
    }

    private void display() {
       IMediaReader mediaReader = ToolFactory
               .makeReader("rtsp://user:password@192.168.1.22:554/Streaming/Channels/1");

       mediaReader
               .setBufferedImageTypeToGenerate(BufferedImage.TYPE_3BYTE_BGR);
       mediaReader.setQueryMetaData(false);
       mediaReader.addListener(mediaListener);

       openWindow();

       while (true) {
           IError error = null;
           if(mediaReader != null){
               error = mediaReader.readPacket();
               if(error != null){
                   LOG.error("Error at mediaReader.readPacket(): " + error);
               }
           }
       }
    }

    Displaying the Sub-Stream (which has lower resolution) works well.

    I use Xuggler 5.4 with Maven.

    There probably is a simple solution to this problem, but I’ve searched the whole internet and haven’t found one, so I’d appreciate any help. Thank you !

    UPDATE : I’d also be happy about (free !) alternatives to Xuggler.

  • java.lang.UnsatisfiedLinkError : No implementation found for

    22 mars 2018, par weizheng yang

    I use FFmpeg NDK.
    When the method is performed

    FATAL EXCEPTION: main Process: com.yus.ycamera, PID: 8287
    java.lang.UnsatisfiedLinkError: No implementation found for int com.yus.ycamera.view.FFmpegActivity.addBgMusci(java.lang.String, java.lang.String) (tried Java_com_yus_ycamera_view_FFmpegActivity_addBgMusci and Java_com_yus_ycamera_view_FFmpegActivity_addBgMusci__Ljava_lang_String_2Ljava_lang_String_2)
    at com.yus.ycamera.view.FFmpegActivity.addBgMusci(Native Method)
    at com.yus.ycamera.view.FFmpegActivity.startDecode(FFmpegActivity.java:86)
    at com.yus.ycamera.view.FFmpegActivity.onClick(FFmpegActivity.java:63)
    at android.view.View.performClick(View.java:5646)
    at android.view.View$PerformClick.run(View.java:22473)
    at android.os.Handler.handleCallback(Handler.java:761)
    at android.os.Handler.dispatchMessage(Handler.java:98)
    at android.os.Looper.loop(Looper.java:156)
    at android.app.ActivityThread.main(ActivityThread.java:6523)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:942)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:832)

    What could be the reason behind this ?