
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (10)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...) -
À 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 (...)
Sur d’autres sites (3587)
-
ffmpeg - camera surface stutters with ffmpeg pulling thumbnails and audio from the mpegts stream
11 mai 2019, par badtraderAndroid 6 NDK 23. I have a camera device which pulls content from HDMI-in port (capture card).
I am displaying this input on a SurfaceView. At the same time, I am using MediaRecorder to access this h264 data in a mpegts container. I stream the mpegts into a ffmpeg process via pipe. I need this ffmpeg process to continuously extract thumbnails and PCM audio from the most recently captured data.
The problem is that after varying amount of time(depending on ffmpeg and mediarecorder settings) the surfaceview display begins to stutter very heavily. It will work for about 30 minutes without error before stuttering begins to become more and more noticeable.
Memory and cpu usage seems constant, cpu temps are low. I am stumped to what is happening here. Have exhausted nearly all the different ffmpeg settings. Should I be trying mediacodec rather than ffmpeg ?
Even weirder this code works fine depending on the input device to hdmi-in capture. Some devices input will begin to stutter after a while while others won’t.
-
ffmpeg - camera surface stutters withffmpeg pulling thumbnails and audio from the mpegts stream
11 mai 2019, par badtraderAndroid 6 NDK 23. I have a camera device which pulls content from HDMI-in port (capture card).
I am displaying this input on a SurfaceView. At the same time, I am using MediaRecorder to access this h264 data in a mpegts container. I stream the mpegts into a ffmpeg process via pipe. I need this ffmpeg process to continuously extract thumbnails and PCM audio from the most recently captured data.
The problem is that after varying amount of time(depending on ffmpeg and mediarecorder settings) the surfaceview display begins to stutter very heavily. It will work for about 30 minutes without error before stuttering begins to become more and more noticeable.
Memory and cpu usage seems constant, cpu temps are low. I am stumped to what is happening here. Have exhausted nearly all the different ffmpeg settings. Should I be trying mediacodec rather than ffmpeg ?
Even weirder this code works fine depending on the input device to hdmi-in capture. Some devices input will begin to stutter after a while while others won’t.
-
ffmpeg usb Web cam recording terminates randomly before set duration
16 mars 2018, par pomptondriveThe output of this script is just fine ; it’s pretty much what I want. But it seems to terminate randomly. My next step will be to try this on another computer to see if the issue persists.
My configuration :
Dell Precision laptop, m4400
2x Intel(R) Core(TM)2 Duo CPU P8600 @ 2.40GHz
Linux Mint 18.3 Sylvia
Kernel : Linux 4.4.0-116-generic (x86_64)
Card : NVIDIA G96GLM [Quadro FX 770M]
ffmpeg version 2.8.11-0ubuntu0.16.04.1
USB Camera-B4.09.24.1 Sony Playstation EyeAnd this is the script that I’m running - the last time it recorded for about three hours and forty-five minutes, before that it was about 55 minutes ; once it ran five and a half hours :
#!/bin/bash
echo "This is a shell script to make a timelapse video."
ffmpeg \
-f v4l2 -input_format yuyv422 -video_size 640x480 -framerate 5 -t 09:00:00 -i /dev/video0 \
-vf "select=not(mod(n\,5)),setpts=N/(60*TB),fps=60, drawtext=fontfile=/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf:text='%{localtime\:%T}':x=20:y=20:fontcolor=white" \
-c:v libx264 -preset superfast -crf 23 -pix_fmt yuv422p -g 15 -keyint_min 15 \
-f mpegts /media/dkm/OneTB/Video/Timelapse_$(date +%Y-%m-%d_%H.%M.%S).tsAny suggestions would be appreciated. Thanks !