Recherche avancée

Médias (0)

Mot : - Tags -/médias

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (73)

  • 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" ;

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

Sur d’autres sites (9558)

  • fate/matroska : Add test for reading/writing BlockAdditionMapping elements

    1er janvier 2022, par quietvoid
    fate/matroska : Add test for reading/writing BlockAdditionMapping elements
    

    Tests the parsing and writing of AVDOVIDecoderConfigurationRecord,
    when it is present as a Dolby Vision configuration block addition mapping.

    Signed-off-by : quietvoid <tcChlisop0@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] tests/fate/matroska.mak
    • [DH] tests/ref/fate/matroska-dovi-write-config8
  • Writing to two standard input pipes from C#

    3 janvier 2021, par Den Delimarsky

    I am using FFMPEG from my C# application to build out the video stream from raw unencoded frames. For just one input stream this is fairly straightforward :

    &#xA;

    var argumentBuilder = new List<string>();&#xA;argumentBuilder.Add("-loglevel panic");&#xA;argumentBuilder.Add("-f h264");&#xA;argumentBuilder.Add("-i pipe:");&#xA;argumentBuilder.Add("-c:v libx264");&#xA;argumentBuilder.Add("-bf 0");&#xA;argumentBuilder.Add("-pix_fmt yuv420p");&#xA;argumentBuilder.Add("-an");&#xA;argumentBuilder.Add(filename);&#xA;&#xA;startInfo.Arguments = string.Join(" ", argumentBuilder.ToArray());&#xA;&#xA;var _ffMpegProcess = new Process();&#xA;_ffMpegProcess.EnableRaisingEvents = true;&#xA;_ffMpegProcess.OutputDataReceived &#x2B;= (s, e) => { Debug.WriteLine(e.Data); };&#xA;_ffMpegProcess.ErrorDataReceived &#x2B;= (s, e) => { Debug.WriteLine(e.Data); };&#xA;&#xA;_ffMpegProcess.StartInfo = startInfo;&#xA;&#xA;Console.WriteLine($"[log] Starting write to {filename}...");&#xA;&#xA;_ffMpegProcess.Start();&#xA;_ffMpegProcess.BeginOutputReadLine();&#xA;_ffMpegProcess.BeginErrorReadLine();&#xA;&#xA;for (int i = 0; i &lt; videoBuffer.Count; i&#x2B;&#x2B;)&#xA;{&#xA;    _ffMpegProcess.StandardInput.BaseStream.Write(videoBuffer[i], 0, videoBuffer[i].Length);&#xA;}&#xA;&#xA;_ffMpegProcess.StandardInput.BaseStream.Close();&#xA;</string>

    &#xA;

    One of the challenges that I am trying to address is writing to two input pipes, similar to how I could do that from, say, Node.js, by referring to pipe:4 or pipe:5. It seems that I can only write to standard input directly but not split it into "channels".

    &#xA;

    What's the approach to do this in C# ?

    &#xA;

  • lavf/movenc : allow writing avc3 sample entry type

    15 novembre 2017, par John Stebbins
    lavf/movenc : allow writing avc3 sample entry type
    

    The avc3 sample entry type is useful for adaptive streaming. It permits
    parameter sets to be written inline in the video stream.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/movenc.c