Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP 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" (...)

Sur d’autres sites (14998)

  • Stopped ffmpeg ip camera recording

    25 août 2016, par Amit Yadav

    I am using foscam ip camera. I want to record its stream in ts chunks and put no video screen when there is no stream available. I want to record 24 hrs video but I am not able to record it up to 24 hr. FFMPEG command stops inbetween. I am using below ffmpeg command

    ffmpeg -rtsp_transport tcp -i rtsp ://username:password@192.168.0.68:554/videoMain -t 86400 -c:v copy -c:a copy -map 0 -f segment -segment_time 10 -strftime 1 -segment_list_type m3u8 -segment_list /home/user/Desktop/rec/del20160725111733.m3u8 -segment_format ts -y /home/user/Desktop/rec/%Y%m%d%H%M%S.ts

    want no video screen like this http://www.electro-tech-online.com/customimages/2011/03/preview409-1.jpg

    Or any other way to record stream using java code so that I have more control over stream to check if it is recording or not.

  • Get RTSP stream from ip camera (ffmpeg)

    13 janvier 2019, par Александр Мангир

    I wrote in cmd :

    ffmpeg -y -re -acodec pcm_s16le -rtsp_transport tcp -i
    rtsp://192.168.1.200:554/11 -vcodec copy -af asetrate=22050 -acodec
    aac -b:a 96k test.mp4

    and I got a video file. If I write this command in python :

    import os  
    os.system("ffmpeg -y -re -acodec pcm_s16le -rtsp_transport tcp -i
    rtsp://192.168.1.200:554/11 -vcodec copy -af asetrate=22050 -acodec aac -b:a 96k test.mp4")

    I get this error :

    "ffmpeg" �� ���� ����७��� ��� ���譥� ��������, �ᯮ��塞�� �ணࠬ��� ���
    ������ 䠩���.

    I tried to create a bat file and run it from python, but I get the same error. If I don’t run it in python, all is good.

    How do I start recording a video stream from an ip camera in python ?

  • what difference between Opencv capture and use ffmpeg and v4l2 to catch camera image [closed]

    18 janvier 2024, par JXJUT

    I'm doing a project which uses a usb camera on Raspberry PI to do the vision process. I get a demo from my coworker. They use v4l2 and ffmpeg to catch the image and then process it in Opencv instead of directly using Opencv capture to catch the image. I wonder if there is a difference between the two methods.

    


    I wonder difference between two method