Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (50)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (4254)

  • ffmpeg start/stop rtmp streams on the fly

    14 août 2020, par almosnow

    I have a media stream that I transmit as rtmp to several endpoints, for this I use ffmpeg and the tee pseudo-format.

    


    Sometimes one of the sites may come online (or go offline) and I would like to start/stop streaming to it accordingly.

    


    Restarting ffmpeg is not an optimal choice as all the streams that are currently being transmitted would get cut.

    


    Is there a way to add/remove targets to tee on the fly ? Or a way to achieve a similar thing with ffmpeg and tools from a linux environment ? Perhaps there's something that already does this with rtmp streams.

    


  • How to link FFMpeg Codecs with Linux Based C++ Project ?

    7 juin 2021, par Andy

    Working on XavierNx, Ubuntu. When attempting to use the ffmpeg library, I am unable to find the imbedded H264 codec, or any of the codecs included with ffmpeg. How can I link the available codecs to my project to use them ?
Running ffmpeg -decoders gives a large list of available codecs but they are currently inaccessible in my project. The code below never finds the decoder no matter what ID is entered.
Thank you for any help !

    


    AVCodec *codec;
codec = avcodec_find_decoder(AV_CODEC_ID_H264);
if(!codec)
{
cerr << "Error finding codec\n";
}


    


  • FFMpegCore C# custom args

    29 août 2022, par DapperDanh

    I am evaluating using FFMpegCore C# to do some video manipulations. I am not seeing a way of passing in a custom argument string. I fear the answer is staring right at me but I definitely read all documentation and cannot find a way to do it.

    


    Below my signature is the string I would like to pass in, though it should not matter. Anyone know how to pass a custom string arguments to FFMpegCore C# ?

    


    Thanks, Dan

    


    public static string GetFlipBookArgs(string convertedVideoFilePath, int frameCountCalc, string flipbookFilePath)
{
    return $"-y -i \"{convertedVideoFilePath}\" -vf \"select = not(mod(n\\, {frameCountCalc})),scale = 128:128,tile = 4x4\" -frames:v 1 -q:v 10 \"{flipbookFilePath}\"";
}