Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (67)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6335)

  • 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/hlsenc:addition of #EXT-X-MEDIA tag and AUDIO attribute

    23 décembre 2017, par Vishwanath Dixit
    avformat/hlsenc:addition of #EXT-X-MEDIA tag and AUDIO attribute
    

    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] doc/muxers.texi
    • [DH] libavformat/dashenc.c
    • [DH] libavformat/hlsenc.c
    • [DH] libavformat/hlsplaylist.c
    • [DH] libavformat/hlsplaylist.h
  • avformat/dashenc : Addition of #EXT-X-MEDIA tag and AUDIO attribute

    29 décembre 2017, par Karthick Jeyapal
    avformat/dashenc : Addition of #EXT-X-MEDIA tag and AUDIO attribute
    

    This is required for AV playout from master.m3u8.
    Otherwise master.m3u8 lists only video-only and/or audio-only streams.

    Reviewed-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/dashenc.c