
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (50)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette 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. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (6548)
-
Check for Executable in Windows Environment Variables
26 juillet 2017, par Matt McManisI’m using Windows 10, Visual Studio 2015, C#, WPF.
I want to check if the program
ffmpeg.exe
exists inEnvironment Variables
.I have modified this code : https://stackoverflow.com/a/3856090/6806643
It cycles through all
Environment Variables
Paths, checking forffmpeg.exe
in each.
It works, but is this the most optimal way to do this ?
Are there instances where this will not work if the user has FFmpeg set up a different way ?
var envar = Environment.GetEnvironmentVariable("PATH"); // Just the Path, no Exe
int found = 0;
// Check All Environment Variables Paths for ffmpeg.exe
//
foreach (var envarPath in envar.Split(';'))
{
// Path + Exe
var exePath = System.IO.Path.Combine(envarPath, "ffmpeg.exe");
// Check
if (File.Exists(exePath))
{
found = 1;
}
}
// Display Message if FFmpeg exists
//
if (found == 1)
{
MessageBox.Show("FFmpeg exists.");
}
else if (found == 0)
{
MessageBox.Show("Cannot locate FFmpeg.");
} -
Revision 89b6d40690 : Replace cpi->common with cm in vp9_onyx_if Replace repeated cpi->common fetchin
18 décembre 2013, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_onyx_if.c
Replace cpi->common with cm in vp9_onyx_ifReplace repeated cpi->common fetching with cm variable in a few
places in vp9_onyx_if.cChange-Id : Ifa16d617f37919b2e0baf8efb256130a647b5eb3
-
Revision 89b8c7a513 : Replace copy_partitioning use case with choose_partitioning This commit replace
15 octobre 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_speed_features.c
Replace copy_partitioning use case with choose_partitioningThis commit replaces the use of copy_partitioning with
choose_partitioning based on the sse of subsamped pixels, which
provides significantly better coding performance and runs at
similar speed, as compared to copy_partitioning. It improves rtc
speed 5 coding performance by 3%.Change-Id : I52d3682a12dce0147f5e52383a594fc242ca3228