Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (82)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (4967)

  • 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 ?

  • Script for muxing audio and video files with same name using FFmpeg

    26 juillet 2024, par Madamadam

    I have a folder that contains audio and video files named like file001.wav and file001.mp4 and i want them to be muxed automatically. I've found a script for windows, but do not know how to alter it for OS X/Linux. Could someone help ?&#xA;Here's the windows script :

    &#xA;&#xA;

    for %%a in ("*.mp4") do ffmpeg -i "%%~na.wav" -i "%%~na.mp4" -acodec copy -vcodec copy "newfiles\%%~na.mp4"&#xA;

    &#xA;