Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (82)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (7981)

  • Anomalie #3695 : Édition d’un auteur et autocompletion des login/mot de passe

    24 janvier 2019, par jluc -

    La non prise en compte du autocomplete=off est pénible
    et je trouve dommage d’en rester là
    car selon le contexte ça induit des blocages.
    (en plus sur firefox ça rejetait carrément le focus et je pouvais absolument rien faire, mais ce bug de firefox sera fixé)

    Il ya plusieurs hacks sur internet pour corriger ce pb.
    Celui que j’ai retenu marche avec javascript : compléter le autocomplete="off" (qui est ignoré par les navigateurs) par :

    <span class="CodeRay">readonly="readonly" onfocus="this.removeAttribute('readonly');"
    </span>

    car le readonly désactive l’autocomplete
    et sauf stylage accenctuant la différence, quand le champ est vide je vois de différence d’apparence.

  • Anomalie #3305 (Nouveau) : Balise fermée automatiquement dans un bloc code

    21 octobre 2014, par Franck Dalot

    Bonjour
    Je viens de me rendre compte d’un bug sur contrib (le bug est également présent sous SPIP 3.0.18-dev [21616]) mais semble absent sous spip 3.1
    Quand une personne répond dans le forum en entourant par "code"

    <necessite version="[2.0.0;2.1.99]"></necessite>
    La prévisalisation est ok, par contre après avoir valider le message, cela écris :
    <necessite version="[2.0.0;2.1.99]"></necessite>
    Cordialement, Franck

  • Recording video in C#

    31 juillet 2014, par pfedotovsky

    I have to do the following : record video from camera using C#. Camera I use produces video frames (framerate is not fixed) and I have to somehow put all the frames together and create video file. Also I need to use different codecs such as AVI or MPEG4 (these codecs are required, others are optional).

    The main problem I faced is how to create video in which framerate is not fixed. I have a stream of frames, for example I can recive the first frame after 1ms, then after 20ms, then 36ms and so on. If I create video with 25 frames/second the result will be wrong because it means that frames are added after 40ms.

    I tried to use Aforge.Video library, it has a method http://www.aforgenet.com/framework/docs/html/84a560df-bfd5-e0d6-2812-f810b56a254d.htm which adds a frame according to timespan. But this method has problems with setting bitrate - the bitrate value I pass to the method simply ignored (http://www.aforgenet.com/forum/viewtopic.php?f=2&t=2665).

    So my questions is : is there some C# library which I can use to video recording ? I have to support AVI and MPEG4, also possibility to set bitrate and the last but not the least - record video with variable framerate.

    Thanks in advance. Any suggestions would be very helpful.

    UPD1 : I can’t connect to camera directly - all I have is a stream of frames and I need to convert this stream to video at run-time.

    UPD2 : A library I’m looking for should satisfy the following properties. It has to contain a method (or some way how to do the same) to add next frame with a timestamp just like in Aforge.Video.FFMPEG :

    public void WriteVideoFrame(Bitmap frame, TimeSpan timestamp)

    And it should be possible to choose different codecs (at least AVI and MPEG4) and also to set bitrate.
    Is there some alternatives to Aforge.Video.FFMPEG ? Because Aforge doesn’t work properly - the bitrate value is ignored, also some codecs are not supported (MPEG2 for example).

    UPD3 : One more questions about codec license. If I use open source library, should I worry about the codec license ?