Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9727)

  • Which lib is better Transcoder for live camera ? ffmpeg vs intel media sdk

    4 janvier 2017, par ParkAtStreet

    I would like to do a performance comparison between Ffmpeg and Intel Media SDK in transcoding.

    I have to write a new application that will do the following.

    1. Receive frames from MJPEG, MPEG4 and H264 cameras.

    2. Transcode the frames. Output will be h264. Here I have to either use Ffmpeg or Intel Media SDK.

    3. Multicast transcoded frames as RTSP streaming.

    I have noticed that both these libs are CPU intensive. Is there any settings in Ffmpeg can reduce the CPU usage ?

    Thanks in advance,

  • Media type not supported after FFMpeg compression

    9 décembre 2017, par amit srivastava

    I am compressing a video(mp4) in android using FFMpeg it is getting compressed successfully, but when I am trying to open compressed file in mobile device it says "Media type not supported", though I can play that media in my computer’s VLC player.

    My purpose is to compress and post it to server as Multipart but it is also failing because server can’t read media Metadata.

    I am using EpMedia android library to rum FFMpeg command which is :

    String[] command = {"-y", "-i", sourceFile.getAbsolutePath(), "-s", "160x120", "-r", "25", "-vcodec", "mp4", "-b:v", "150k", "-b:a", "48000", "-ac", "2", "-ar", "22050", destFile.getAbsolutePath()};
    EpEditor epEditor =  new EpEditor(context);
    epEditor.execCmd(cmd, 0, new OnEditorListener(){
          @Override
          public void onSuccess(){
              Log.d("Compress", "Success");}

          @Override
          public void onFailure(){
              Log.d("Compress", "Failed");
          }

          @Override
          public void onProgress(float progress){
              Log.d("Compress", "Running");
          }
      });

    I have also tried using SiliCompressor android library but same thing happened Media type not supported resulting issue in uploading to server.

    What can be done in this scenario, even if I upload the media to server what if I want to play that media on mobile device.

  • avformat/rtsp : correctly set media control uri with mpegts

    11 octobre 2020, par tpol
    avformat/rtsp : correctly set media control uri with mpegts
    

    Fixes #1941

    Currently the media control uri is not correctly assigned when mpegts is
    signalled in the media description.

    The code checks whether at least one AVStream has been setup before
    assigning to the media's uri. With mpegts the AVStreams are setup when
    parsing packets and so the media's uri is skipped. This is fixed by
    using rt->nb_rtsp_streams in the check which counts all medias in the
    sdp.

    Reviewed-by : Andriy Gelman <andriy.gelman@gmail.com>
    Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com>

    • [DH] libavformat/rtsp.c