Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (71)

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

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (11413)

  • AIR to ffmpeg via argb frames transfer

    4 mai 2014, par mika

    Hey I’m running into a similar problem as : Converting RGB to YUV, + ffmpeg

    From AIR, I figured the encoding was too long to render frames at a reasonable rate - so I exported the argb ByteArray from bitmap.getPixels(rect) directly to a file.

    So for a 30sec flash animation, I’d export let’s say 1500 frames to 1500 .argb files.

    This method works great. I was able to render HD video using the ffmpeg cmd :

    ffmpeg -f image2 -pix_fmt argb -vcodec rawvideo -s 640x380 -i frame_%d.argb -r 24 -qscale 1.1 -s 640x380 -i ./music.mp3 -shortest render-high.mpg

    So far so good ! However, inbetween the two processes we need to store those 3gb of data.

    I then tried to append all the argb to one single file and have ffmpeg consume it, but didn’t get anything good out of it... Also tried messing tcp/udp but getting stuck...

    Does anyone know of a way to streamline that process and hopefully pipe both Air and ffmpeg together ?

  • Http live stream video segmenting. non-Mac approach

    20 juin 2012, par Agzam

    Anyone knows a good way to use http live streaming tools on non-Mac platforms ?
    Can you tell me at least if there's good alternatives ? I need mediafilesegmenter and mediastreamvalidator.

    Or maybe anyone has a source code or something like that...

    UPD : I've tried different segmenters, most of them are based on Carson's open-sourced segmenter. Now the difference between Apple's mediafilesegmenter and this one, that it takes only a transport stream, not just any video. And I need to segment h264 videos.
    When I use ffmpeg to convert h26s to mpeg-ts I'm getting much bigger files in the end. Even if I try to preserve same audio codec (aac) it changes video codec form avc to mpeg-ts.

    Damn I hate Apple. How can they propose that thing as a standard if they don't even provide workarounds for another platforms.

    I still need to find a way to segment h264 videos, and keep in the segmented files avc and aac codecs.

  • How do I set up an ffmpeg queue ?

    1er mai 2015, par Travis McCrea

    I am trying to encode many videos on my server, but FFMPEG is resource intensive so I would like to setup some form of queueing. The rest of my site is using PHP, but I don’t know if I should use PHP, Python, BASH, etc. I was thinking I might need to use CRON but I am not really sure exactly how to tell ffmpeg to start a new task (from the list) after it finishes the one before it.