
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (70)
-
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 (...) -
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 (...)
Sur d’autres sites (7695)
-
IIS 404 error on existing text file
18 août 2014, par Harun YılmazI’m running a project on a server which runs IIS 7.5
There’s a strange error that I have never seen. The project is written with Codeigniter. I’m converting videos with ffmpeg.exe and writing the results in separate text files for each video. And in the client side it reads the text file for progress.
But the server throws a 404 error for existing txt file. It keeps throwing error until I restart the server. After restarting the server, it can be able to show the text file.
Everything else works perfect. Please help me.
EDIT :
.txt files are reachable after amount of time. But it’s not certain how much time should pass.
-
How to execute FFMPEG commands for merging audio and caption in video in android
28 juin 2016, par Tejas ShelkeI am able to merge videos using following code, but i am not getting perfect commands to merge audio and caption in video n how to execute these commands in android.
Videokit vk = new Videokit();
String commandArray[] = new String[]{
"ffmpeg",
"-f",
"concat",
"-i",
list,
"-c",
"copy",
outputFile
};
vk.run(commandArray, Environment.getExternalStorageDirectory() + "/" + "vidkit", true); -
ubuntu - Detect image on screen [on hold]
16 octobre 2018, par Willian ElmyrI’d like to know if there’s any package or command on ubuntu that can detect if a image or similar appears on screen and pipe its output to script.
I would like to work on a video detection script, basically it would search for a few patterns that could always appear on screen like ImageSearch on autohotkey and then download that video through a bash script.
I just want to know if there’s a package or command that can detect a image on screen or another method that could get the same results, there’s no need to help with the rest.
Also it would be better if it could detect non-perfect 1x1 image, as some will have slightly different resolution and quality.
Thanks !
It doesnt necessarily have to be a script, it could be a software that then triggers a script.
Example : What i want