
Recherche avancée
Autres articles (85)
-
À propos des documents
21 juin 2013, parQue faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
Document bloqué en file d’attente ?
Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...) -
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 (...) -
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 (...)
Sur d’autres sites (8086)
-
avcodec/mjpegdec : Disallow progressive bayer images
18 novembre 2024, par Michael Niedermayer -
IP cameras and Nginx
28 octobre 2015, par JocBro1The goal is to connect a large number of IP cameras to a server Nginx archiving all going stream video files to mp4 (H264 + ACC) to play them on different devices.
Module was installed nginx-rtmp-module (for HLS and RTMP).
avconv takes a stream from the cameras at rtsp and gives to nginx’s rtmp.
Recording is as nginx to flv and then the files in the desired format convert to mp4. (Here is a question for information about the file is video-codec : h264, audio-codec : acc, but if you save them to mp4, iDevises not be played on, we have yet to convert. Why ?)
The problem in general is that after a certain time (say 20-30 minutes) nginx more than half of the cameras stops processing, play video and record video files from the camera, if you look at this live stream with rtmp - he does not play, but hls - played.
Sorry for translater’s english)
People help me, please !
-
FFMPEG : How are the parsers providing input bit stream to the decoder
24 décembre 2013, par ZaxI'm having a video decoder integrated into
FFMPEG
. For this decoder i have a parser that reads data from the input bit stream (Elementary stream) and provide the decoder with the data whenever needed. I'm usingfread()
function in my parser to read the input bit stream.However, when i see the parsers of other available decoder in the
libavcodec/
directory, none of them seems to have afread
in them. Tried to figure out this mechanism by debugging the code, but didn't get even a clue regrading the same. So i request if anyone can please provide some explanation regarding how the decoder is getting the required data even though its parsers doesn't seem to have any fread ? I mean what is the mechanish being used here to read data from the input file.Any suggestions/answers regarding the same will be really helpful to me. Kindly do the needful as it can help many people reading this post. Thanks in advance.
—Regards