
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (68)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (...)
Sur d’autres sites (7946)
-
Fixing issue in _processOnPosition where the item in onPositionItems[i] can be undefined mid-loop if the callback that is triggered changes the length of the onPositionItems array — onPositionItems.length becomes zero and there's an uncaught TypeError when trying to access item.fired the next time around.
22 août 2013Fixing issue in _processOnPosition where the item in onPositionItems[i] can be undefined mid-loop if the callback that is triggered changes the length of the onPositionItems array — onPositionItems.length becomes zero and there's an uncaught TypeError when trying to access item.fired the next time around.
-
Pausing video streaming at EOF with FFMPEG ( Streaming and saving simultaneously)
6 novembre 2019, par PadfootI am writing a video to a local file using
videowriter
in OpenCV and at the same time, I am streaming it using ffmpeg+RTSP.
But my video writing is slower than streaming. So RTSP is reaching the EOF and streaming is stopped.Is there any way or option in FFMPEG to pause the stream if it reached EOF and resumes again from the same time point.
EDIT
System - Ubuntu 16, 32 GB RAM.
For video writing (frame by frame) -
int i = 0;
VideoWriter video("output.mp4",CV_FOURCC('a','v','c','1'),25, Size(frame_width,frame_height));
while(1)
{
Mat frame;
cap >> frame;
if (frame.empty())
break;
video.write(frame);
if (i == 25)
printf("Start streaming");
i++;
}After writing 25 frames, I am streaming through -
ffmpeg -re -i output.mp4 -codec copy -f flv rtmp://192.168.0.1:1935/live
-
Can't display live streaming video from mobile to wowza streaming software
11 février 2016, par Muthukumar SYou have to record frame are convert to video.mp4 files. i need rtmp url live streaming videos in mp4 format. but i work in java CV 1.1 . the mp4 and flv video is working. and it can’t display(any video format) in wowza streaming engine software. thanks.