Recherche avancée

Médias (91)

Autres articles (60)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (9084)

  • Record audio data to an existing media file using FFMPEG API

    3 février 2021, par bbdd

    My task is to record the received audio data in a media file. I have no problem with this, everything works fine. But, when closing the audio file, I will no longer be able to re-open it and write the audio data to the end of the audio file. How do I solve this problem ? And in general, is it possible to write new data to the end of an existing media file ?

    


    This is a piece of code where I record the trailer and close the media file :

    


    // Writing the stream trailer to an output
// media file and free the file private data.
av_write_trailer(p_oFrmCtx);
avformat_close_input(&p_oFrmCtx);



    


  • 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.

  • 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,