Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (72)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

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

Sur d’autres sites (10292)

  • NVIDIA codec compression time

    1er avril 2019, par rmt94

    I’m working with the NVIDIA video codec to encode a YUV video to the HEVC format. The problem is that I want to know the time it takes to perform the encoding and I can not find the way.

    Other codecs supported by FFMPEG such as x265 or hevc_qsv show the encoding time at the end of the process, but in the case of the NVIDIA codec no. Does anyone know of any command or method that allows to show this information ?

  • Is it possible to use CSA decryption with FFMPEG ?

    11 mai 2020, par Sezertt

    First of all I am sorry if I ask the wrong questions.

    



    I am currently using vlc (libdvbcsa) to encrypt and decrypt live streams and save it to a ts file just by giving

    



    csa-ck= key

    



    on server side and

    



    :ts-csa-ck= key

    



    on client side. It works as expected.

    



    But I want to use ffmpeg to decrypt ts file and show(I can show normal ts files but not the ones with csa encryption). I tried many input options for ffmpeg with no success and then I realized that ffmpeg has nothing to do with csa and most of them are for aes.

    



    Am I wrong ? Can you lead me to a direction ?

    


  • Is the output ts file size when using ffmpeg convert rtmp to hls with adaptive bitrate too large ?

    21 juillet 2022, par bui the vuong

    I want to convert rtmp to hls that supports adaptive bitrate , when referencing in many sources I use this configuration , but I found the ts file size of 240 to 720 bitrates is larger than I thought , I thought src will have to be the maximum size or 720p , please explain to me why , and is it possible to reduce the file size ( does any option in ffmpeg increase it ) ? Thanks everyone.

    


    My ffmpeg command :

    


    ffmpeg -i rtmp://localhost:1935/$app/$name -async 1 -vsync -1
                    -c:v libx264 -c:a aac -b:v 256k -b:a 64k -g 2 -vf "scale=426:trunc(ow/a/2)*2" -tune zerolatency -preset ultrafast -crf 23 -f flv rtmp://localhost:1935/show/$name_240
                    -c:v libx264 -c:a aac -b:v 768k -b:a 128k -g 2 -vf "scale=720:trunc(ow/a/2)*2" -tune zerolatency -preset ultrafast -crf 23 -f flv rtmp://localhost:1935/show/$name_360
                    -c:v libx264 -c:a aac -b:v 1024k -b:a 128k -g 2 -vf "scale=960:trunc(ow/a/2)*2" -tune zerolatency -preset ultrafast -crf 23 -f flv rtmp://localhost:1935/show/$name_480
                    -c:v libx264 -c:a aac -b:v 1920k -b:a 128k -g 2 -vf "scale=1280:trunc(ow/a/2)*2" -tune zerolatency -preset ultrafast -crf 23 -f flv rtmp://localhost:1935/show/$name_720
                    -c copy -f flv rtmp://localhost:1935/show/$name_src;