Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (80)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • 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 (6125)

  • How do I decrease echo in an audio file using ffmpeg ?

    23 juin 2019, par itisyeetimetoday

    I was using ARSS to convert audio to spectrograms then back. However, my files
    https://drive.google.com/open?id=1X24eUOzOGa5uBUHFTtrSmzptIQTz-93l
    are all echoey. How do I reduce the echo/reverb using ffmpeg or anything command line interface(for python scripting) ?
    Note : I can upload originals if necessary

    I have tried altering ARSS setting, mainly the brightness, however, 2.25 is the highest I can push it without introducing static, which would be even harder to remove, on top of the echo.

  • No Implementation Found for init method in Youtube Live Streaming Watch me project

    17 mai 2017, par Basha

    I am new to android development.presently I am Working on Youtube Live Streaming and downloaded watchMe project.I am getting the error in my class where I used to load FFMPEG libffmpeg.so file and the error was cannot resolve "init" method. and getting error while running the application as below

    java.lang.UnsatisfiedLinkError: No implementation found for boolean com.google.sai.apps.watchme.Ffmpeg.init(int, int, int, java.lang.String) (tried Java_com_google_sai_apps_watchme_Ffmpeg_init and Java_com_google_sai_apps_watchme_Ffmpeg_init__IIILjava_lang_String_2)
                                                                                        at com.google.sai.apps.watchme.Ffmpeg.init(Native Method)
                                                                                        at com.google.sai.apps.watchme.VideoStreamingConnection.open(VideoStreamingConnection.java:71)
                                                                                        at com.google.sai.apps.watchme.StreamerService.startStreaming(StreamerService.java:73)
                                                                                        at com.google.sai.apps.watchme.StreamerActivity.startStreaming(StreamerActivity.java:163)
                                                                                        at com.google.sai.apps.watchme.StreamerActivity.access$200(StreamerActivity.java:39)
                                                                                        at com.google.sai.apps.watchme.StreamerActivity$1.onServiceConnected(StreamerActivity.java:55)
                                                                                        at android.app.LoadedApk$ServiceDispatcher.doConnected(LoadedApk.java:1223)
                                                                                        at android.app.LoadedApk$ServiceDispatcher$RunConnection.run(LoadedApk.java:1240)
                                                                                        at android.os.Handler.handleCallback(Handler.java:739)
                                                                                        at android.os.Handler.dispatchMessage(Handler.java:95)
                                                                                        at android.os.Looper.loop(Looper.java:148)
                                                                                        at android.app.ActivityThread.main(ActivityThread.java:5438)
                                                                                        at java.lang.reflect.Method.invoke(Native Method)
                                                                                        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:762)
                                                                                        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:652)
       05-17 11:31:41.415 23434-25678/com.google.sai.apps.watchme E/ImageFetcher: Error in downloadBitmap - java.io.FileNotFoundException: https://i.ytimg.com/vi/FFvfpXcOpYk/default_live.jpg

    and FFMPEG class was

    public class Ffmpeg {


       static {
           System.loadLibrary("ffmpeg");
       }


       public static native boolean init(int width, int height, int audio_sample_rate, String rtmpUrl);

       public static native void shutdown();

       // Returns the size of the encoded frame.
       public static native int encodeVideoFrame(byte[] yuv_image);

       public static native int encodeAudioFrame(short[] audio_data, int length);
    }

    please someone help me.

  • How can I use ffmpeg to convert all HEVC videos to h.264 videos only on linux ? [closed]

    13 juillet 2022, par Jayden Lo

    I am trying to import all my images and videos from Google Photos to Nextcloud. I used Google Takeout to download them, but some videos are in HEVC format, which is not supported by most devices. How can I batch convert all HEVC videos to h.264 ? I am using Ubuntu and here is my file structure :

    


    ./Photos/
  Image1.jpg
  Image2.jpg
  ...
  HEVC-Video1.mp4
  HEVC-Video2.mp4
  HEVC-Video3.mp4
  ...
  H.264-Video1.mp4
  H.264-Video2.mp4
  ...


    


    Thanks in advance.