config.json 914 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "global_config": {
  3. "total_poll_duration_seconds": 300,
  4. "max_concurrent_streams": 8,
  5. "output_directory": "./output",
  6. "report_filename": "rtsp_report.json",
  7. "connection_timeout_seconds": 10,
  8. "read_timeout_seconds": 30
  9. },
  10. "streams": [
  11. {
  12. "rtsp_url": "rtsp://example1.com:554/live/stream1",
  13. "duration_seconds": 60,
  14. "weight": 1.0,
  15. "output_filename": "stream1.mp4"
  16. },
  17. {
  18. "rtsp_url": "rtsp://example2.com:554/live/stream2",
  19. "duration_seconds": 90,
  20. "weight": 1.5,
  21. "output_filename": "stream2.mp4"
  22. },
  23. {
  24. "rtsp_url": "rtsp://example3.com:554/live/stream3",
  25. "duration_seconds": 45,
  26. "weight": 0.8,
  27. "output_filename": "stream3.mp4"
  28. },
  29. {
  30. "rtsp_url": "rtsp://example4.com:554/live/stream4",
  31. "duration_seconds": 120,
  32. "weight": 2.0,
  33. "output_filename": "stream4.mp4"
  34. }
  35. ]
  36. }