Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (112)

  • 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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (9030)

  • Converting .hav and .dav video files

    29 août 2017, par user2535621

    Is there any library that would allow me to convert .hav and .dav video files to some more known file type ? Ffmpeg on node.js seems to have some problems, so here is my code for that (it is also reducing the frame rate of the video), in case I did something wrong :

       new ffmpeg('./dist/orig_videos/07.hav', function (err, video) {
           if (!err) {
               video.setVideoFrameRate(10);
               var extension = '.mp4';

               video.save('./dist/compressed_videos/conv-video' + extension, function (error, file) {
                   if (error) {
                       console.log('Save error: ' + error);
                   }

                   fs.stat('./dist/video/conv-video' + extension, function(error, stats) {
                       if (error) {
                           console.log('Stat error: ' + error);

                           res.header('Content-type', 'text/html');
                           return res.end('0');
                       } else {
                           res.header('Content-type', 'text/html');
                           return res.end(stats.size.toString());
                       }
                   });
               });
           } else {
               console.log('Error: ' + err);

               res.header('Content-type', 'text/html');
               return res.end('');
           }
       });
  • lavf/movenc : write track title metadata for mov files

    19 mars 2018, par Courtland Idstrom
    lavf/movenc : write track title metadata for mov files
    

    Track title (atom 'name') is a well defined user data atom for mov files. Existing code (for mp4) only writes title metadata if present.

    Relevant reference docs :

    https://developer.apple.com/library/content/documentation/QuickTime/Reference/QTRef_AtomsResources/Content/QTRef_AtomsResources4.html#//apple_ref/doc/uid/TP40004285-DontLinkChapterID_1--udta-
    https://developer.apple.com/library/content/documentation/QuickTime/QTFF/QTFFChap2/qtff2.html#//apple_ref/doc/uid/TP40000939-CH204-63839

    • [DH] libavformat/movenc.c
  • how to generate multiple bitrate output hls files from live rtsp stream

    10 février 2015, par prashanta

    I am gerating single bitrate live hls content from live rtsp stream . I am using the following command

    ffmpeg -v verbose -i rtsp://127.0.0.1:8080/test.sdp -vcodec libx264 -acodec aac -ac 1 -strict -2 -crf 18 -profile:v baseline -maxrate 400k -bufsize 1835k -pix_fmt yuv420p -flags -global_header -hls_time 10 -hls_list_size 3 -hls_wrap 4 -hls_flags delete_segments -start_number 1 /usr/local/apache-tomcat-7.0.53/webapps/ROOT/hls/index1.m3u8

    How can I modify the above FFmpeg command to generate multiple bitrate output content ? Please help me.