Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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 (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (7643)

  • Video/Audio file analysis - meta data, similar to MediaInfo

    23 mai 2016, par user3585420

    I usually use MediaInfo to look into my media files to see the duration of the video/audio tracks within the file. I believe MediaInfo looks at meta data of the file ( headers ) rather than the actual filestream, probably due to speed. I want a tool that actually goes through the file to work out the duration of the video/audio tracks within the media file, rather than just telling me what the headers tell me.

    The reason I need this is because I have an instance of a media file which is not reporting the correct audio track duration. Example : I have two files, an audio file and a video file, vid1.mxf and aud1.mxf, these are the same length. I ’stich’ these together using FFMPEG and because of storage failure/network issues the audio track in the resulting file is short, however it does not report as short within MediaInfo. When I listen to the file however it is clearly short, the network/storage device must have become inaccessible during the ’stitching’ toether. The audio and video input files are on different storage devices.

    I have in the past used the C# library https://github.com/naudio/NAudio which does this sort of this, however it only works with singular .wav files, and not files where there is a video inside the container too ( .mxf ).

    Thanks

  • Use docker-compose format 2.3.

    15 janvier 2018, par blueimp
    Use docker-compose format 2.3.
    Do not create a separate network.
  • avformat_open_input failed to open unnamed pipe

    8 octobre 2015, par user2406774

    hi i am writing an application that reads data from network and feeds it to unnamed pipe and i want to read it from other end of pipe using avformat_open_input but this call blocking infinetly any idea about how to read stream from unnamed pipe

    here is the flow of code

    int fd[2]
       pipe(fd);
       if(fork()==0){
       //child process
       close(fd[1]);
       avcodec_register_all();
       av_register_all();
       avformat_network_init();

       AVInputFormat *input_format = av_find_input_format("mp4");
       if (!input_format)
       {
       fprintf(stderr, "Could not find MP4 demuxer.\n");
       exit(1);
       }

       AVFormatContext *input_context = NULL;
       fprintf(stderr,"Before opening input context\n");
       int ret = avformat_open_input(&input_context, fd[0],input_format, NULL);
      // int ret = avformat_open_input(&input_context, "pipe:fd[0]",input_format, NULL);
       fprintf(stderr,"After opening input context\n");

       }


       else{
           //parent process
           close(fd[0]);
           read data from Network();
           //write it to pipe
           ret=write(fd[1], udp_packet, len);

           }

    after opening input stream i am trying to transcode the mp4 to mpeg ts file .if i give mp4 file as filename filed in avformat_open_input API it is working fine

    any suggestions ?