Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (61)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (9680)

  • preventing FFmpeg from stoping mapping/muxing when input source is lost

    22 novembre 2020, par Przemo

    I have a few input streams. Some of them are not reliable. My inputs are received from multicast and put to fifo streams (created by "mkfifo 239.0.0.1:4002_1.ts") by other tools than ffmpeg.
FFmpeg is muxing all input streams from fifo and outputing them to output fifo.

    


    I am running ffmpeg with following command

    


    ffmpeg -thread_queue_size 1024 -i fifo/239.0.0.1:4002_1.ts
-thread_queue_size 1024 -i fifo/239.0.0.4:4005_1.ts -thread_queue_size 1024 -i fifo/239.0.0.3:4004_1.ts -thread_queue_size 1024 -i fifo/239.0.0.2:4002_1.ts -map 0:v -map 0:a:0 -map 1:v -map 1:a:0 -map 2:v -map 2:a:0 -map 3:v -map 3:a:0 -program program_num=3:st=0:st=1
-program program_num=28:st=2:st=3 -program program_num=4:st=4:st=5 -program program_num=667:st=6:st=7 -c copy -f mpegts -mpegts_original_network_id 70 -mpegts_transport_stream_id 2 -muxrate 50000000 fifo/output_1.ts -y


    


    Sometimes one of my input is lost and whole muxing is stopped. Is it possible to prevent ffmpeg from failing in that case ?

    


  • avfilter/vf_v360 : split maps into slices

    29 septembre 2020, par Paul B Mahol
    avfilter/vf_v360 : split maps into slices
    
    • [DH] libavfilter/v360.h
    • [DH] libavfilter/vf_v360.c
  • avfilter/af_headphone : Use uint64_t for channel mapping

    24 août 2020, par Andreas Rheinhardt
    avfilter/af_headphone : Use uint64_t for channel mapping
    

    The headphone filter has an option for the user to specify an assignment
    of inputs to channels (or from pairs of channels of the second input to
    channels). Up until now, these channels were stored in an int containing
    the logarithm of the channel layout. Yet it is not the logarithm that is
    used lateron and so a retransformation was necessary. Therefore this
    commit simply stores the uint64_t as is, avoiding the retransformation.

    This also has the advantage that unset channels (whose corresponding
    entry is zero) can't be mistaken for valid channels any more ; the old
    code had to initialize the channels to -1 to solve this problem and had
    to check for whether a channel is set before the retransformation
    (because 1 << -1 is UB).

    The only downside of this approach is that the size of the context
    increases (by 256 bytes) ; but this is not exceedingly much.

    Finally, the array has been moved to the end of the context ; it is only
    used a few times during the initialization process and moving it
    decreased the offsets of lots of other entries, reducing codesize.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/af_headphone.c