Recherche avancée

Médias (91)

Autres articles (83)

  • 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 (...)

  • 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 (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (7753)

  • Need Help in fade in effect in a video by ffmpeg in Node js

    5 août 2015, par Nazmul Hossain Bilash

    I am trying to give fade - in effect in Node js by ffmpeg. I have tried but cant get this. Need help to give this effect in a video.

    My code :

    var ffmpeg = require('fluent-ffmpeg');

    ffmpeg('public/'+req.body.video)
    .videoFilters('fade=in:0:60')
    .output('public/videos/test/test.mp4')
    .on('end', function(err) {  
       if(!err)
       {
         console.log('conversion marge ended');

       }                

    })
    .on('error', function(err){
       console.log('error: '+err);

    }).run();
  • desktop screen BroadCasting on rtmp server using ffmpeg library ?c#

    26 septembre 2016, par frenkestine

    i have uploaded my files to rtmp server via ffmpeg.exe by passing it command argument using c# of mp4 file .Know i have a question i want to telecast or broadcast my screen live on rtmp server for that i am using microsft video encoder and recording my desktop screen then uploading files using ffmpeg.exe

    Any body tell me how is it possible via c# that i broadcast my screen live on rtmp server using c# as in case obs studio this happens

    remember ffmpeg.exe requires complete header it mean the end point of file is necessary so i cannot upload file until i finish recording screen so is there any way ffmpeg.exe live broadcast my screen on rtmp server

  • avcodec/aacenc : don't redundantly re-compute max sfb

    28 avril 2024, par Yotam Ofek
    avcodec/aacenc : don't redundantly re-compute max sfb
    

    Remove an unneeded inner loop in adjust_frame_information that
    had no effect, the loop body can be run only once and will compute
    the same max sfb.

    • [DH] libavcodec/aacenc.c