Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (68)

  • Organiser par catégorie

    17 mai 2013, par

    Dans 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, par

    Utilité
    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, par

    Le 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 Jake

    I have three example videos, good.avi, damaged1.avi, and damaged2.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 :
    On good.avi it completes with no output -OK
    On damaged1.avi it outputs [mjpeg @ 0x7fc1dd813800] overread 1 -OK
    On damaged2.avi it completed with no output as in good.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 ?

    They also both have identical codec details in VLC :
    enter image description here

  • 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 expect Cam1 Connection Status: False , Cam2 Connection Status: False but it takes 3 minutes for cv2.VideoCapture() function to finish and return Falseif 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 mornindew

    I 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.