Recherche avancée

Médias (91)

Autres articles (81)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

Sur d’autres sites (10604)

  • How to convert 1080px mp4 video to 360p,480,720px,1080 like available in Youtube via ffmpeg

    14 février 2016, par Deep dhaliwal

    This is code.. I am in doubt about "-b" what about it. What about it ? Is it correct ? Please check and give improved version

    ffmpeg -i 'input.mp4' -ab 192k -ar 44000 -r 24 -aspect 4:3 -b 899k -vcodec mpeg4 -s 640*360 'output.mp4'
  • Webpage with several IP-cameras' streams

    28 mars 2013, par JustLogin

    I have some live RTSP streams from IP-cameras with H.264 video and g-729 sound codecs. I need to display them on a webpage, which could be opened in any popular browser in Windows, Linux and Mac. Also, there must be an option to record and to save to user's PC a video from any stream to flv file , using Start/Stop recording button.
    The problem is, I don't know what technologies to choose : all solutions which I came up with, have several problems.

    The first variant is to transcode stream to RTMP with FFmpeg, changing audio codec to MP3.That way it can be played with a small Flash app. It works, but I don't know, how to save video because the .flv-writing library requires Bitmaps and ByteArray sound data chunks as input. It's not a problem to get images from Video class, but I have no idea about sound : SoundMixer class couldn't recieve any data from Video (or NetStream) with it's computeSpectrum method. So , impossibility of writing sound to .flv is the only problem of this solution.

    Another variant is to use java applet, based on Xuggler library. It work's fine, but the library is VERY huge, and "applet's" size is near 40mb !

    I also tryed Silverlight (it's problem is, it isn't popular, so everyone have to download it for 1 app only) and HTML5 (which does not allow capturing sound from incoming live stream, like Flash), but they give no solutions too. So I don't know, how to realize this project, can you give me any idea please ?

  • What video codec for little number of color ?

    12 mars 2013, par Scorpi0

    I am trying to make a video with AForge FFMPEG library.
    My video consist in little arrow moving, drawn with System.Drawing namespace.
    So I draw in a graphic, and I add image by image to the video. This method is inspired from this answer.

    Now, the prolem I got is that all the codecs I tried give very low result. The arrows have very bad borders, I don't think classic codec fit to this type of image.

    In fact, I need something very close to a raw format. But raw format give me 1Go video size for 5 seconds video.

    I'm only drawing arrow, filled with the same color, on a uniform background, so I wonder if there is a special video codec that can output a HD result with an acceptable file size.

    Painted arrow : enter image description here

    Video arrow : enter image description here

    The video will be shipped to our clients. So we are seeking for a solution with the least constraint on the reading process.