
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (81)
-
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 (...) -
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 : (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (6103)
-
h264 real time video streaming
7 septembre 2017, par Michal GallovicIf you have dynamically generated h264 frames on one end (server), how would you go about making a real time (low latency) video stream viewable in browser (client) ?
In other words, what I’m trying to achieve is streaming graphically intensive c++ application from gpu server to browser.
As a simple solution, I’m thinking of something like this :
c++ app | ffmpeg | server | html5 client
h264 frames created by application are sent to standard output, where ffmpeg is used to remux this stream into mp4 that is passed to server, which upon request can pass it to client.
Is this a good approach ? Is that even possible to create a low latency 30fps video stream using this approach ?
-
Revision fcdabb105f : Disable speed 6 for datarate test. One of the tests for real-time mode is faili
21 mars 2014, par Marco PaniconiChanged Paths :
Modify /test/datarate_test.cc
Disable speed 6 for datarate test.One of the tests for real-time mode is failing at speed 6.
Introduced recently, will enable again when fixed.Change-Id : I8f42de6a3eca226c9aa5c5e1fab98d629993c087
-
Real time ffmpeg output from terminal in php
8 novembre 2014, par user2978381I am using this code to get real time update from windows terminal. It doesn’t output anything in the browser but process the command and in the background and completes the conversion.
set_time_limit(0);
$ffmpegCommand = 'C:\\ffmpeg\\bin\\ffmpeg';
$handle = popen($ffmpegCommand." -i upload/1415292048.mp4 -ar 22050 -ab 32 -f flv -s 640x320 -vcodec libx264 -vsync 1 -bt 50k converted/video001.flv", "r");
if (ob_get_level() == 0)
ob_start();
while(!feof($handle)) {
$buffer = fread($handle, 4096);
$buffer = trim(htmlspecialchars($buffer));
echo "<pre>";
echo $buffer ;
echo str_pad('', 4096);
echo "</pre>";
ob_flush();
flush();
sleep(1);
}
pclose($handle);
ob_end_flush();But when the same code I am using for youtube_dl it updates in the real time.
header('Content-Encoding: none;');
set_time_limit(0);
$handle = popen("python -m youtube_dl -F http://vimeo.com/30261818", "r");
if (ob_get_level() == 0)
ob_start();
while(!feof($handle)) {
$buffer = fread($handle, 4096);
$buffer = trim(htmlspecialchars($buffer));
echo "<pre>";
echo $buffer ;
echo str_pad('', 4096);
echo "</pre>";
ob_flush();
flush();
sleep(1);
}
pclose($handle);
ob_end_flush();So if I want to show output of ffmpeg in the browser what should I do ?