
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (68)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (4028)
-
FFmpeg Error Checking : Broken or missing AVI Index
17 avril 2017, par JakeI have three example videos,
good.avi
,damaged1.avi
, anddamaged2.avi
. The first will play in VLC, but the second two both error with the same "Broken or missing AVI Index" message.I have thousands of these videos which I need to process in MATLAB, so I’m trying to error check using FFmpeg like this :
ffmpeg -v error -i vidname.avi -f null - 2>&1
Now here’s the part I don’t understand :
Ongood.avi
it completes with no output -OK
Ondamaged1.avi
it outputs[mjpeg @ 0x7fc1dd813800] overread 1
-OK
Ondamaged2.avi
it completed with no output as ingood.avi
- ?????Would someone with video codec/FFmpeg experience please help me understand what’s going on here so I can develop a more robust error check ?
-
Checking if IP Camera is connected or not with cv2 faster ?
15 novembre 2022, par Barış AktaşI have code that works on 2 IP Cameras but before running my main algorithm I would like to check if my IP Cameras are connected or not. I wrote this code and i have used it before with 2 USB cameras now i am having a problem with IP Cameras.


import cv2 

def check_connnections():
 #Check cam1
 cam1_ok = False 
 cam1 = cv2.VideoCapture('rtsp://admin:Tom12345.@192.168.0.33:554/onvif1') 
 if cam1.isOpened():
 cam1_ok = True

 #Check cam2
 cam2_ok = False
 cam2 = cv2.VideoCapture('rtsp://admin:Tom12345.@192.168.0.33:554/onvif1') 
 if cam2.isOpened():
 cam2_ok = True

 print(f'Cam1 Connection Status: {cam1_ok}')
 print(f'Cam2 Connection Status: {cam2_ok}')


check_connnections()



Now if i plug the cameras i get :

Cam1 Connection Status: True
,Cam2 Connection Status: True
and when i unplug the cameras i expectCam1 Connection Status: False
,Cam2 Connection Status: False
but it takes 3 minutes forcv2.VideoCapture()
function to finish and returnFalse
if the IP cameras are not connected while it runs instantly for USB cameras. Is there a faster way to check this ?

I tried same thing with USB Cameras, i also tried
try:... except:pass
but i couldn't find i way.

-
FFMPEG not "cutting" as expected
10 février 2021, par mornindewI am using FFMPEG (from a java application) via a simple system.process and trying to cut a video into chunks. I am attempting to cut it into 10 second increments. My FFMPEG commands look like :



ffmpeg -i SampleVideo.mp4 -ss 00:00:00.00 -t 00:00:10.00 -strict -2 1438458522836/1438458522836_0.mp4
ffmpeg -i SampleVideo.mp4 -ss 00:00:10.01 -t 00:00:20.00 -strict -2 1438458522836/1438458536306_1.mp4
ffmpeg -i SampleVideo.mp4 -ss 00:00:20.01 -t 00:00:30.00 -strict -2 1438458522836/1438458546042_2.mp4
ffmpeg -i SampleVideo.mp4 -ss 00:00:30.01 -t 00:00:40.00 -strict -2 1438458522836/1438458561165_3.mp4
ffmpeg -i SampleVideo.mp4 -ss 00:00:40.01 -t 00:00:50.00 -strict -2 1438458522836/1438458577187_4.mp4
ffmpeg -i SampleVideo.mp4 -ss 00:00:50.01 -t 00:01:00.00 -strict -2 1438458522836/1438458587935_5.mp4




They look correct to me but my videos are not coming out in 10 second increments. They seem to be getting "split" in random spots. Any ideas on what I am doing wrong ?



For reference :



video 0 == 10 seconds
video 1 == 20 seconds
Video 2 == 30 seconds
Video 3 == 32 seconds
Video 4 == 22 seconds
Video 5 == 12 seconds




Any help would be appreciated.