Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (90)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (6348)

  • How to convert a continuously growing MXF file into DASH format

    10 octobre 2020, par Damian

    I am trying to find a way to convert MXF files in chunks rather than use the whole file. The purpose of this is because I have a continuously growing MXF. I am using ffmpeg for conversion and I already have the working commands for the whole file. Say I have the following : Scenario :

    


    > 1. Header Partition
> 2. Body Partition-1
> 3. Body Partition-2
> 4. Body Partition-3
> 5. Footer Partition
> 6. RIP


    


    Can I split this into 2 or 3 other files and convert them separately or is this impossible to achieve ? Or maybe find another way around of converting MXF inside a stream ?

    


  • Reading frames from MP4 segment (.m4s). or Dash Segment [closed]

    24 septembre 2020, par Vamsi Krishna Rayapati

    Generally we do it by

    


    copying init.mp4 and segment1.m4s to a video file and extract frames in that video

    


    It works fine. But it requires a temporary file

    


    I want to edit segment1.m4s directly

    


    ''' my idea is to decode the video
Direclty with out using init file '''

    


    Help me .how to do it ?

    


  • Where to download FFMPEG.exe and use it in C#

    1er décembre 2015, par Charlie

    I am trying to watermark a video using FFMPEG.
    I tried following code

    NReco.VideoConverter.FFMpegConverter wrap = new FFMpegConverter();
    wrap.Invoke("-i D:\\input.mp4 -i D:\\inputImage.png -filter_complex \"overlay=10:10\" D:\\Output.mp4");

    but it gives error

    ffmpeg : Invalid argument (exit code : 1)

    I tried searching if i could use such kind of method(invoke) in AForge, splicer or in other library.

    I came across many another questions on stackoverflow like
    which uses ffmpeg exe. I don’t know where i can find it.

    I also found this link from official ffmpeg website for windows but can not find any such thing

    I have just started working on video processing in c# so i am very confused about the concepts kindly help me to get a start.