Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (67)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (7920)

  • FFMPEG RTSP Replace Video Stream with Holding Slide - Optimization - CPU Related

    29 septembre 2020, par Majickal
    c:\bin\ffmpeg\bin\ffmpeg.exe -rtsp_transport tcp -i rtsp://10.0.0.xx:8554/live -framerate 30 -loop 1 -i "C:\bin\slides\HoldingSlide.png" -tune zerolatency  -x264opts bitrate=2500:vbv-maxrate=2500:vbv-bufsize=250 -c:v libx264 -g 30 -keyint_min 30 -crf 35 -preset superfast -pix_fmt yuv420p -s 1280x720 -c:a aac -b:v 2500k -b:a 192k -ar 24k -map 0:1 -map 1:0 -f flv $INGEST_URL


    


    The above ffmpeg code replaces the rtsp video component of the rtsp stream with a holding slide.
I am seeing high CPU utilization (from the re-streaming server) when running this code and am looking for pointers to optimize it.
Specifically, when ingesting the AV (rtsp) stream to Azure Media Platform

    


    Whilst I am interested in ensuring the holding slide is of an acceptable quality, the core aspect is ensuring the audio quality is not compromised.

    


    Any pointers/suggestions with regards to reducing CPU load would be most welcome.

    


    example video replacement with holding slide

    


  • ffmpeg - concatenate files while space constrained

    23 juillet 2023, par glodomorrapl

    Let's say i have a 2 TB drive. If i want to use ffmpeg to concatenate two files, they cannot be larger than 1 TB in total, otherwise I won't have enough storage space to save the output file.

    


    Is it possible for ffmpeg (or, perhaps, another tool) to losslessly concatenate two videos while also removing parts of the source files on the fly, allowing me to concatenate larger files ? The files in questions will be encoded with the ffv1 codec and saved as mkv, although I'm fine with trying different containers.

    


    Would saving files in smaller chunks to begin with be the only solution ?

    


  • How to split video files upon detected change in speakers ? (ie. different file for different speaker)

    21 août 2019, par afnan khan

    have an audio file that have 2 speakers . Audio file has conversation between them. I want to split that file in 2 parts. One part should have conversation of Person A and other should have conversation of Person B.

    I have tried to split on silent but it does not work. Any suggestion to do this ?