Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (29)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (4108)

  • How to parse ffmpeg progress real time in ruby

    7 octobre 2015, par jryancanty

    So I was struggling with this problem a long time last night and finally figured it out so I wanted to post here in case someone ran across the same issue.

    The goal is to parse the output of FFmpeg so that it would run in a Sidekiq worker and save progress and duration to an ActiveRecord model so I could get a progress bar in the UI by polling the database.

    How do I parse ffmpeg duration and time real-time without waiting for the process to finish ?

  • C# Recording 3D object ffmpeg

    1er décembre 2015, par Skyx

    I want to make a screen recording on my application in C# which has a 3D model in it. I found out that i can do the recording with ffmpeg. I implemented the CopyFromScreen function which records the whole screen.

    CopyFromScreen.graphics.CopyFromScreen(Screen.PrimaryScreen.Bounds.X, Screen.PrimaryScreen.Bounds.Y, 0, 0, Screen.PrimaryScreen.Bounds.Size);

    I want to record only my 3D model viewport without recording the whole screen. Does anyone know or experience working with ffmpeg recording just the specifiek object or a 3D viewport ?

    private readonly HelixViewport3D _viewport = new HelixViewport3D(); // my 3D model viewport
  • Simulate packet loss in internet video streaming

    31 décembre 2015, par james

    I have encoded H.264 video using FFmpeg. I want to apply packet loss model like Gilbert Eliot model to depict video transmission over unreliable network.Like in this thread TV noise is simulated. But noise on the internet is different. So is there a way to simulate packet loss/ noise for internet video streaming using FFmpeg or MATLAB ?