
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 (73)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (7642)
-
Inaccurate sleep using C++11 on Windows
15 février 2017, par Ashe the humanI’ve been using C++11 sleep to give the interval between video frames. This method I’ve been using makes playback elongated on Windows.
#include <iostream>
#include <thread>
#include <sstream>
int main(const int argc, const char **args)
{
std::stringstream sb;
if(argc < 2)
return 1;
int fps = 0;
sb << args[1];
sb >> fps;
if(fps <= 0)
return 1;
int i;
while(true)
{
std::chrono::high_resolution_clock::time_point start, end;
start = std::chrono::high_resolution_clock::now();
for(i=0; i fps));
}
end = std::chrono::high_resolution_clock::now();
auto c = std::chrono::duration_cast(end - start).count();
std::cerr << c << std::endl;
}
return 0;
}
</sstream></thread></iostream>Running that program with 60 gives about 1004 1006 on Linux and 1065 1075 on Windows. So, I’m guessing, after playing a 2-hour long video, more than a minute is passed than just 2 hours.
timeBeginPeriod()
has no effect. Is using timer(like this one ?) is the only way to implement media players on Windows ? What about on Linux ? I think it’s the right way considering the fact that ffplay usesav_usleep()
.So sad that there’s no portable way.
-
x264 & ARM on Windows Phone
16 octobre 2013, par sskI am trying to build x264 (http://www.videolan.org/developers/x264.html)
I used this project to build it on Windows using Visual Studio : http://winx264.codeplex.com/documentation
I found these steps to build it on Windows using MSYS : http://www.ayobamiadewole.com/Blog/How-to-build-x264-or-libx264.dll-in-Windows and http://software.intel.com/en-us/articles/building-x264-with-intel-compiler-for-windows
I found that ARM support has been added to x264 recently. x264 depends on Intel compiler and YASM assembler. I am not sure whether this is supported on Windows Phone 8.
1) Has anyone built a windows phone 8 project using Intel compiler ? Is it supported ?
2) I am not familiar with assemblers. Is YASM assembler supported on Windows Phone 8 ?
-
Add watermark text on mkv video using ffmpeg windows version [on hold]
27 mars 2015, par sajjad hosseiniI want to add a watermark text to a mkv video using ffmpeg windows version .
I want the watermark to be like a subtitle that starts on minute 2 and lasts for 30 seconds and says : copyright to mysite.com . I tried mkvmerge to add a subtitle but it can be easily deleted by others , so now i’m relying on ffmpeg to do this for me . Can anyone help me with the process ? I want the watermark to be actually on the video and can’t be deleted using mkvmerge .