Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (65)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (9195)

  • lavc/ccaption_dec : do not ignore repeated character commands

    15 février 2016, par Aman Gupta
    lavc/ccaption_dec : do not ignore repeated character commands
    

    control codes in a cc stream can be repeated, and must be ignored.
    however, repeated characters must not be ignored. the code attempted to
    wipe prev_cmd in handle_char to allow repeated characters to be
    processed, but prev_cmd would previously get reset _after_ handle_char()

    i also moved the prev_cmd reset out from handle_char() so it can be
    re-used for special character sets, which _must_ be ignored when
    repeated.

    • [DH] libavcodec/ccaption_dec.c
  • autogen.sh : Improve autoconf/automake detection on OpenBSD

    26 janvier 2016, par Erik de Castro Lopo
    autogen.sh : Improve autoconf/automake detection on OpenBSD
    

    OpenBSD needs the enviroment variables `AUTOCONF_VERSION` and
    `AUTOMAKE_VERSION` to be set in order to find these tools.

    The script now tests (individually) if they are already set and if they
    aren’t sets them to something that is known to work on OpenBSD 5.8

    • [DH] autogen.sh
  • C# binaryreader and binarywriter any file

    19 janvier 2016, par Jökull Snær Gylfason

    I am trying to create a video using ffmpeg and I have managed it but my purpose is to create a raw video from a byte array that i have created and put it to youtube and be able to get it back raw but now because I could only get raw video through avi the youtube compression algorithm is messing up my data. I am not sure if it is even possible to get through youtube and back without any loss of data but I would like to know if it is and if I can make an mp4 video with no loss of data
    Im using ffmpeg videofilewriter

    writer.Open("test.avi", 320, 240, 25, VideoCodec.Raw, 10);

    And then I am just running it through a few for loops witch creates a bitmap and sets it in the frame

    Bitmap image = new Bitmap(width, height, PixelFormat.Format32bppPArgb);

    maybe I could somehow edit the mp4 file