Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (61)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (6374)

  • RTSP Stream not converted into m3u8 format

    16 juin 2022, par Vajirali Asamadi

    I am using CentOS 7. I am trying to convert my live RTSP stream to m3u8 playlist. but it will not convert anything.

    


    ffmpeg -i {rtsp://....} -fflags flush_packets -max_delay 5 -flags -global_header -hls_time 5 -hls_list_size 3 -vcodec copy -y {output.m3u8}


    


    In my local machine this command works perfectly In my local ffmpeg version is 4 but on live server there is version 3.

    


    So any one can help me what is the issue with this command ?

    


  • How to import FFMPEG Library in my maven project ?

    1er septembre 2021, par Georgi

    I have a Spring-boot project, where I am using the ffmpeg library, I am executing the ffmpeg commands through a ProcessBuilder(in the terminal/cmd) and everything works fine, because I have already installed the ffmpeg on my macOS. When I try to generate a jar and run it on an another machine, where ffmpeg is not installed, it is executed, everything works fine, except the ffmpeg comamnds. Is there any change to import the library to my maven project or somehow to use it ?
Is it a good idea to add an external jar of the library ?

    



    Thank you in advance !

    


  • nodejs get mp4 file thumbnail quickly

    29 août 2017, par user1590595

    I want to have a thumbnail of 0.0 sec of a video.
    Currently I am using node-fluent-ffmpeg to generate thumbnail. Following is the code :

    ffmpeg(tempLocalFile)
             .screenshots({
               timestamps: [0.0],
               filename: 'xx.png',
               folder: tempFilePath
             }).on('end', function() {
               console.log('done');
             });

    But the problem is, it is taking too much of time to do the process. It is normally taking 30sec to generate the thumbnail. Which keeps increasing if the mp4 file size increases.

    So my question is, Is there any fast way to generate the thumbnail. Can we improve above code to improve the performance.

    ps : The machine this code is running is 512MB RAM 800MHz