Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (94)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Les sons

    15 mai 2013, par
  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (5986)

  • Play RTMP WITH MPEG-TS format on Android

    10 septembre 2015, par Guy Levin

    I’m trying to play a video from a rtmp stream on Android using JavaCV and ffmpeg

    I’m able to see videos from other sources like rtsp

    Do you have any idea what could be the reason ?

    Thanks

  • How to make video (of any format) compatible to play in android's default player ?

    24 janvier 2014, par Aarti

    I want to play video urls from server in device's video player,but unable to play all videos
    Testing on HTC Desire (4.1.1), Panasonic (4.1.3), Samsung G S2(2.3.6).

    I've already gone through following links

    Sorry, this video cannot be played - streaming mp4 to android and
    How to Play Streaming Audio/Video from a url ?
    but did not found working solution.

    I understand few imp things from above,

    1. Video must be baseline H264 encoded for playing successfully on all devices
    2. For encoding any kind of video to H264, we need to integret ffmpeg

    My questions are,

    1. How exactly I can convert any format of video to H264 baseline support ? Examples are appreciated.
    2. Is there any alternate way for FFMPEG ?
    3. How can I check if video is baseline H.264 ?

    I have tried playing videos with both Intent ACTION_VIEW & MediaController, result was same for both.

    Its very urgent. Any kind of help or hint appreciated. Thank You.

  • Play RTMP video stream on Android using JavaCV+FFmpeg

    6 février 2014, par 0_ll_0

    I know I can use FFmpeg+JavaCV for live rtmp streaming from Android to Wowza or Red5 server. Now I want to do the opposite.
    I found out that I can grab video from file using FFmpeg like this

    FFmpegFrameGrabber frameGrabber =
               new FFmpegFrameGrabber(file.getAbsolutePath());

       IplImage captured_frame = null;

       FrameRecorder recorder = null;
       recorder = new FFmpegFrameRecorder("/mnt/sdcard/external_sd/videosteste/primeiroteste.mp4", 300, 300);
       recorder.setVideoCodec(13);
       recorder.setFrameRate(30);
       recorder.setFormat("mp4");
       try {
           recorder.start();
           frameGrabber.start();
           while (true) {
               try {
                   captured_frame = frameGrabber.grab();

                   if (captured_frame == null) {
                       System.out.println("!!! Failed cvQueryFrame");
                       break;
                   }
                   recorder.record(captured_frame);
               } catch (Exception e) {
               }
           }
           recorder.stop();
           recorder.release();
       } catch (Exception e) {
           e.printStackTrace();
       }

    My aim is to play a video from live rtmp stream ("rtmp ://.../live/channelname/broadcast") on Android using FFmpeg, VideoView and also with audio output. Is it possible ? I found solution like this but I do not want to use webview. Also I found a lot of other questions here, at stackoverflow, but they are mostly unanswered and I still do not have clear solution.
    Code samples are preferable. Thanks !