
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (4)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Les vidéos
21 avril 2011, parComme 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 (...)
Sur d’autres sites (4113)
-
ChromaKey FLV Transparency
1er décembre 2012, par Mr DI have over 20000 FLV's at the moment. They currently have no alpha channel and are all CGI generated text on a black background.
My issue :
I need to be able to remove the black background and make it transparent, so I can use these videos to layer over pictures in my flash project.It needs to be an automated process, that can go through the whole dir of videos and remove the backgrounds
What I've tried ?
I have spent the last three days pulling my hair out. Currently the option I see is to write a custom filter for ffmpeg.
The end goal :
Layer the flv videos over randomly generated videos in an adobe air application built in flex.
-
Stream h.264 to iOS via ffmpeg
6 janvier 2017, par OlrikHI followed the examples given in How to use VideoToolbox to decompress H.264 video stream adn it works fine with example streams from the internet, but when using something like ffmpeg to generate a stream from a webcam I get a -12909 (bad data) error from the VTDecompressionSession.
The command I used was the following :
ffmpeg -f avfoundation -framerate 30 -s 1280x720 -i "0" -vcodec libx264 -f h264 -s 640x360 -profile:v baseline -level 3.0 -pix_fmt yuv420p -preset ultrafast udp://127.0.0.1:60000
I googled for the last few days but I didn’t find any working example.
What did i do wrong, did somebody get it to work ?
Maybe there is a working alternative to ffmpeg ?
I am open to any working solutionAny help or hint in the right direction would be appreciated :)
-
Compiling FFmpeg without ALMOST everything
24 avril 2017, par famemanIn my case I wanted to compile ffmpeg for android using the ffmpeg-android git repo. To understand my problem you should know the basics of building ffmpeg.
I only work with audio files but this question may give you points to start at in other cases of problems.
I modified the./configure
command of FFmpeg to avoid gpl usage and with (important)--disable-everything
.This disables everything. I needed to overlay two audio files.
But I had some problems.
And because I had to search several days for finding many solutions I had to combine, I started this Q&A.