πŸš€ Big News:Socket Has Acquired Secure Annex.Learn More β†’
Socket
Book a DemoSign in
Socket

vogel-video-analyzer

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vogel-video-analyzer

YOLOv26-based video analysis tool for automated bird content detection, quantification, and species identification

pipPyPI
Version
0.2.1
Maintainers
1

🐦 Vogel Video Analyzer

Vogel Video Analyzer Banner

Languages: πŸ‡¬πŸ‡§ English | πŸ‡©πŸ‡ͺ Deutsch | πŸ‡―πŸ‡΅ ζ—₯本θͺž

PyPI version Python Versions License: MIT PyPI Status Downloads

YOLOv26-based video analysis tool for automated bird content detection and quantification.

A powerful command-line tool and Python library for analyzing videos to detect and quantify bird presence using state-of-the-art YOLOv26 object detection.

✨ Features

  • πŸ€– YOLOv26-powered Detection - Accurate bird detection using pre-trained models
  • 🦜 Species Identification - Identify bird species using Hugging Face models (optional)
  • πŸ“Š HTML Reports (v0.5.0+) - Interactive visual reports with charts and thumbnails
    • Activity timeline showing bird detections over time
    • Species distribution charts
    • Thumbnail gallery of best detections
    • Responsive design for desktop and mobile
    • Self-contained HTML files (no external dependencies)
  • 🎬 Video Annotation (v0.3.0+) - Create annotated videos with bounding boxes and species labels
    • Automatic output path generation with timestamp (video.mp4 β†’ video_annotated_YYYYMMDD_HHMMSS.mp4)
    • Multilingual species labels with flag icons (πŸ‡¬πŸ‡§ πŸ‡©πŸ‡ͺ πŸ‡―πŸ‡΅)
    • 🏴 Embedded flag rendering (v0.5.10+) - PNG flags in code, zero file dependencies
    • 🏴 Hybrid flag rendering (v0.4.2+) - PNG images with automatic fallback to custom --flag-dir
    • Configurable font sizes for optimal readability
    • Audio preservation from original video
    • Flicker-free bounding boxes with detection caching
    • Batch processing support for multiple videos
    • Right-positioned semi-transparent label boxes
  • 🌍 Multilingual Support (v0.3.0+) - Bird names in English, German, and Japanese with full locale detection
    • 39 bird species with full translations
    • All 8 German model birds supported (kamera-linux/german-bird-classifier-v2)
    • Japanese (v0.5.10+): Auto-detect ja_JP.utf8 and ja_JP.eucjp locales
    • Display format: "EN: Hawfinch / DE: Kernbeißer / 75%" or "πŸ‡¬πŸ‡§ Hawfinch / πŸ‡©πŸ‡ͺ Kernbeißer / πŸ‡―πŸ‡΅ γ‚’γ‚ͺガラ / 72%"
    • Set language via --language ja or VOGEL_LANG=ja environment variable
  • πŸ“Š Detailed Statistics - Frame-by-frame analysis with bird content percentage
  • 🎯 Segment Detection - Identifies continuous time periods with bird presence
  • ⚑ Performance Optimized - Configurable sample rate for faster processing
  • πŸ“„ JSON Export - Structured reports for archival and further analysis
  • πŸ—‘οΈ Smart Auto-Delete - Remove video files or folders without bird content
  • πŸ“ Logging Support - Structured logs for batch processing workflows
  • 🌐 i18n Support - English, German, and Japanese interface translations
  • πŸ“‹ Issue Board (v0.5.3+) - Integrated project management and issue tracking
    • Local issue management with status, priority, and labels
    • Optional GitHub Issues synchronization
    • CLI command vogel-issues for full issue lifecycle
  • ⚑ Raspberry Pi AI HAT+ / Hailo-8 NPU (v0.5.12+) - Hardware-accelerated inference on Raspberry Pi 5
    • Drop-in --engine hailo backend, no code changes needed
    • --hef-model for specifying compiled HEF files
    • --export-onnx converts .pt β†’ .onnx for Hailo Dataflow Compiler
    • Tested with HailoRT 4.23.0 and Hailo-8 AI HAT+ (26 TOPS)
  • πŸ“š Library & CLI - Use as standalone tool or integrate into your Python projects

πŸ” Security Audit (v0.5.5)

Latest audit date: 2026-02-15

  • Bandit (code scan): 16 low, 0 medium, 0 high
  • pip-audit (dependency scan): No known vulnerabilities found
  • Key fixes in v0.5.5:
    • Added explicit timeout for GitHub GraphQL requests
    • Hardened external Chart.js download validation (HTTPS + allowlisted host)
    • Updated minimum pillow version to 12.1.1

See SECURITY.md for reporting and policy details.

πŸŽ“ Want to Train Your Own Species Classifier?

Check out vogel-model-trainer to extract training data from your videos and build custom models for your local bird species!

Why train a custom model?

  • Pre-trained models often misidentify European garden birds as exotic species
  • Custom models achieve >90% accuracy for YOUR specific birds
  • Train on YOUR camera setup and lighting conditions

πŸ‘‰ Get Started with vogel-model-trainer β†’

πŸš€ Quick Start

Installation

# Install venv if needed (Debian/Ubuntu)
sudo apt install python3-venv

# Create virtual environment
python3 -m venv ~/venv-vogel

# Activate it
source ~/venv-vogel/bin/activate  # On Windows: ~/venv-vogel\Scripts\activate

# Install package
pip install vogel-video-analyzer

# Install ffmpeg for audio preservation (Ubuntu/Debian)
sudo apt install ffmpeg

Direct Installation

pip install vogel-video-analyzer

Basic Usage

# Analyze a single video
vogel-analyze video.mp4

# Identify bird species
vogel-analyze --identify-species video.mp4

# Generate HTML report (v0.5.0+)
vogel-analyze --language en --identify-species --species-model kamera-linux/german-bird-classifier-v2 --species-threshold 0.80 --html-report report.html --sample-rate 15 --max-thumbnails 12 video.mp4
# View example: https://htmlpreview.github.io/?https://github.com/kamera-linux/vogel-video-analyzer/blob/main/examples/html_report_example.html

# Create annotated video (v0.3.0+)
vogel-analyze --identify-species --annotate-video video.mp4
# Output: video_annotated.mp4 (automatic)

# Create annotated video with multilingual labels
vogel-analyze --identify-species \
  --species-model kamera-linux/german-bird-classifier-v2 \
  --multilingual \
  --annotate-video \
  video.mp4

# Batch processing multiple videos
vogel-analyze --identify-species --annotate-video --multilingual *.mp4
# Creates: video1_annotated.mp4, video2_annotated.mp4, etc.

# Combined outputs: JSON + HTML report
vogel-analyze --identify-species -o data.json --html-report report.html video.mp4

# Faster analysis (every 5th frame)
vogel-analyze --sample-rate 5 video.mp4

# Export to JSON
vogel-analyze --output report.json video.mp4

# Delete only video files with 0% bird content
vogel-analyze --delete-file *.mp4

# Delete entire folders with 0% bird content  
vogel-analyze --delete-folder ~/Videos/*/*.mp4

# Batch process directory
vogel-analyze ~/Videos/Birds/**/*.mp4

# Raspberry Pi AI HAT+ / Hailo-8 NPU (v0.5.12+)
# Install HailoRT driver first: sudo apt install hailo-all
# Then export and analyze:
vogel-analyze --export-onnx yolov8n.pt                # export .pt β†’ .onnx
# (compile .onnx β†’ .hef with Hailo Dataflow Compiler on x86)
vogel-analyze --engine hailo --hef-model yolov8n.hef video.mp4

πŸ“– Usage Examples

Command Line Interface

Basic Analysis

# Analyze single video with default settings
vogel-analyze bird_video.mp4

Output:

🎬 Video Analysis Report
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
πŸ“ File: /path/to/bird_video.mp4
πŸ“Š Total Frames: 450 (analyzed: 90)
⏱️  Duration: 15.0 seconds
🐦 Bird Frames: 72 (80.0%)
🎯 Bird Segments: 2

πŸ“ Detected Segments:
  β”Œ Segment 1: 00:00:02 - 00:00:08 (72% bird frames)
  β”” Segment 2: 00:00:11 - 00:00:14 (89% bird frames)

βœ… Status: Significant bird activity detected
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Species Identification (Optional)

# Identify bird species in video
vogel-analyze --identify-species bird_video.mp4

Output:

🎬 Video Analysis Report
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
πŸ“ File: /path/to/bird_video.mp4
πŸ“Š Total Frames: 450 (analyzed: 90)
⏱️  Duration: 15.0 seconds
🐦 Bird Frames: 72 (80.0%)
🎯 Bird Segments: 2

πŸ“ Detected Segments:
  β”Œ Segment 1: 00:00:02 - 00:00:08 (72% bird frames)
  β”” Segment 2: 00:00:11 - 00:00:14 (89% bird frames)

βœ… Status: Significant bird activity detected

🦜 Detected Species:
   3 species detected

  β€’ Parus major (Great Tit)
    45 detections (avg confidence: 0.89)
  β€’ Turdus merula (Blackbird)
    18 detections (avg confidence: 0.85)
  β€’ Erithacus rubecula (European Robin)
    9 detections (avg confidence: 0.82)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

⚠️ Experimental Feature: Pre-trained models may misidentify European garden birds as exotic species. For accurate identification of local bird species, consider training a custom model (see Custom Model Training).

The first time you run species identification, the model (~100-300MB) will be downloaded automatically and cached locally for future use.

πŸš€ GPU Acceleration: Species identification automatically uses CUDA (NVIDIA GPU) if available, significantly speeding up inference. Falls back to CPU if no GPU is detected.

Using Custom Models

You can use locally trained models for better accuracy with your specific bird species:

# Use custom model
vogel-analyze --identify-species --species-model ~/vogel-models/my-model/ video.mp4

# With custom confidence threshold (default: 0.3)
vogel-analyze --identify-species \
  --species-model ~/vogel-models/my-model/ \
  --species-threshold 0.5 \
  video.mp4

Threshold Guidelines:

  • 0.1-0.2 - Maximize detections (exploratory)
  • 0.3-0.5 - Balanced (recommended)
  • 0.6-0.9 - High confidence only

See the Custom Model Training section for details on training your own model.

Video Annotation (v0.4.0+)

Create professionally annotated videos with bounding boxes, species labels, and custom styling:

# Basic annotation with automatic timestamped output
vogel-analyze --identify-species --annotate-video input.mp4
# Output: input_annotated_20251123_195542.mp4

# With multilingual labels and custom font size
vogel-analyze --identify-species \
  --species-model kamera-linux/german-bird-classifier-v2 \
  --multilingual \
  --annotate-video \
  --font-size 16 \
  input.mp4

# With high-quality PNG flag icons (v0.4.2+)
vogel-analyze --identify-species \
  --species-model kamera-linux/german-bird-classifier-v2 \
  --multilingual \
  --annotate-video \
  --flag-dir assets/flags/ \
  input.mp4

# With confidence threshold (only show birds >= 50%)
vogel-analyze --identify-species \
  --species-threshold 0.5 \
  --multilingual \
  --annotate-video \
  --font-size 18 \
  input.mp4

# Batch processing multiple videos
vogel-analyze --identify-species \
  --annotate-video \
  --multilingual \
  --font-size 16 \
  *.mp4
# Creates: video1_annotated_20251123_195542.mp4, video2_annotated_20251123_195545.mp4, etc.

# Fast processing with sample rate
vogel-analyze --identify-species \
  --sample-rate 30 \
  --annotate-video \
  --font-size 14 \
  input.mp4

Features:

  • πŸ“¦ Bounding boxes around detected birds (green, 3px width)
  • 🏷️ Multilingual species labels with flag icons
    • πŸ‡¬πŸ‡§ English: European Robin
    • πŸ‡©πŸ‡ͺ German: Rotkehlchen
    • πŸ‡―πŸ‡΅ Japanese: γƒ¨γƒΌγƒ­γƒƒγƒ‘γ‚³γƒžγƒ‰γƒͺ
  • 🏴 Hybrid flag rendering (v0.4.2+): PNG images with automatic fallback
    • Confidence: 73%
  • 🎨 Customizable text size (--font-size 12-24, default: 20)
  • 🎯 Confidence filtering (--species-threshold 0.0-1.0, default: 0.0)
  • πŸ“ Smart positioning (labels right of bird with semi-transparent background)
  • 🎡 Audio preservation (automatic ffmpeg merge from original video)
  • ⚑ Flicker-free animation (detection caching)
  • ⏱️ Timestamped outputs (never overwrites existing files)
  • πŸ“Š Real-time progress indicator

Label Display Format:

πŸ‡¬πŸ‡§ European Robin
πŸ‡©πŸ‡ͺ Rotkehlchen  
πŸ‡―πŸ‡΅ γƒ¨γƒΌγƒ­γƒƒγƒ‘γ‚³γƒžγƒ‰γƒͺ
73%

Video Summary (v0.3.1+)

Create compressed videos by skipping segments without bird activity:

# Basic summary with default settings
vogel-analyze --create-summary video.mp4
# Output: video_summary.mp4

# Custom thresholds
vogel-analyze --create-summary \
  --skip-empty-seconds 5.0 \
  --min-activity-duration 1.0 \
  video.mp4

# Custom output path (single video only)
vogel-analyze --create-summary \
  --summary-output custom_summary.mp4 \
  video.mp4

# Batch processing multiple videos
vogel-analyze --create-summary *.mp4
# Creates: video1_summary.mp4, video2_summary.mp4, etc.

# Combine with faster processing
vogel-analyze --create-summary \
  --sample-rate 10 \
  video.mp4

Features:

  • βœ‚οΈ Smart segment detection - Automatically identifies bird activity periods
  • 🎡 Audio preservation - Maintains perfect audio sync (no pitch/speed changes)
  • βš™οΈ Configurable thresholds:
    • --skip-empty-seconds (default: 3.0) - Minimum duration of bird-free segments to skip
    • --min-activity-duration (default: 2.0) - Minimum duration of bird activity to keep
  • πŸ“Š Compression statistics - Shows original vs. summary duration
  • ⚑ Fast processing - Uses ffmpeg concat (no re-encoding)
  • πŸ“ Automatic path generation - Saves as <original>_summary.mp4

How it works:

  • Analyzes video frame-by-frame to detect bird presence
  • Identifies continuous segments with/without birds
  • Filters segments based on duration thresholds
  • Concatenates segments with audio using ffmpeg
  • Returns compression statistics

Example Output:

πŸ” Analyzing video for bird activity: video.mp4...
   πŸ“Š Analyzing 18000 frames at 30.0 FPS...
   βœ… Analysis complete - 1250 frames with birds detected

πŸ“Š Bird activity segments identified
   πŸ“Š Segments to keep: 8
   ⏱️  Original duration: 0:10:00
   ⏱️  Summary duration: 0:02:45
   πŸ“‰ Compression: 72.5% shorter

🎬 Creating summary video: video_summary.mp4...
   βœ… Summary video created successfully
   πŸ“ video_summary.mp4

Supported Languages:

  • πŸ‡¬πŸ‡§ English (primary)
  • πŸ‡©πŸ‡ͺ German (full support, 39 species)
  • πŸ‡―πŸ‡΅ Japanese (39 species, database only)

Supported Birds (German Model): All 8 birds from kamera-linux/german-bird-classifier-v2:

  • Blaumeise (Blue Tit)
  • GrΓΌnfink (European Greenfinch)
  • Haussperling (House Sparrow)
  • Kernbeißer (Hawfinch)
  • Kleiber (Eurasian Nuthatch)
  • Kohlmeise (Great Tit)
  • Rotkehlchen (European Robin)
  • Sumpfmeise (Marsh Tit)

Performance Tips:

  • Use --sample-rate 30 for 4K videos (analyzes every 30th frame)
  • Use --sample-rate 5-10 for HD videos (balance speed vs accuracy)
  • Lower sample rates = more detections but slower processing
  • Audio is automatically preserved from original video
  • Output maintains original resolution and framerate

Requirements:

# Install ffmpeg for audio preservation (Ubuntu/Debian)
sudo apt install ffmpeg

Advanced Options

# Custom threshold and sample rate
vogel-analyze --threshold 0.4 --sample-rate 10 video.mp4

# Species identification with confidence tuning
vogel-analyze --identify-species --species-threshold 0.4 video.mp4
vogel-analyze --identify-species --sample-rate 10 video.mp4

# Set output language (en/de/ja, auto-detected by default)
vogel-analyze --language de video.mp4

# Delete only video files with 0% bird content
vogel-analyze --delete-file --sample-rate 5 *.mp4

# Delete entire folders with 0% bird content
vogel-analyze --delete-folder --sample-rate 5 ~/Videos/*/*.mp4

# Save JSON report and log
vogel-analyze --output report.json --log video.mp4

Python Library

from vogel_video_analyzer import VideoAnalyzer

# Initialize analyzer (basic)
analyzer = VideoAnalyzer(
    model_path="yolo26n.pt",
    threshold=0.3
)

# Initialize analyzer with species identification
analyzer = VideoAnalyzer(
    model_path="yolo26n.pt",
    threshold=0.3,
    identify_species=True
)

# Analyze video

#### Advanced Options
```bash
# Custom threshold and sample rate
vogel-analyze --threshold 0.4 --sample-rate 10 video.mp4

# Set output language (en/de, auto-detected by default)
vogel-analyze --language de video.mp4

# Delete only video files with 0% bird content
vogel-analyze --delete-file --sample-rate 5 *.mp4

# Delete entire folders with 0% bird content
vogel-analyze --delete-folder --sample-rate 5 ~/Videos/*/*.mp4

# Save JSON report and log
vogel-analyze --output report.json --log video.mp4

Python Library

from vogel_video_analyzer import VideoAnalyzer

# Initialize analyzer
analyzer = VideoAnalyzer(
    model_path="yolo26n.pt",
    threshold=0.3
)

# Analyze video
stats = analyzer.analyze_video("bird_video.mp4", sample_rate=5)

# Print formatted report
analyzer.print_report(stats)

# Access statistics
print(f"Bird content: {stats['bird_percentage']:.1f}%")
print(f"Segments found: {len(stats['bird_segments'])}")

🎯 Use Cases

1. Quality Control for Bird Recordings

Automatically verify that recorded videos actually contain birds:

vogel-analyze --threshold 0.5 --delete-file recordings/**/*.mp4

2. Archive Management

Identify and remove videos without bird content to save storage:

# Find videos with 0% bird content
vogel-analyze --output stats.json archive/**/*.mp4

# Delete empty video files only
vogel-analyze --delete-file archive/**/*.mp4

# Delete entire folders with 0% bird content
vogel-analyze --delete-folder archive/**/*.mp4

3. Batch Analysis for Research

Process large video collections and generate structured reports:

# Analyze all videos and save individual reports
for video in research_data/**/*.mp4; do
    vogel-analyze --sample-rate 10 --output "${video%.mp4}_report.json" "$video"
done

4. Integration in Automation Workflows

Use as part of automated recording pipelines:

from vogel_video_analyzer import VideoAnalyzer

analyzer = VideoAnalyzer(threshold=0.3)
stats = analyzer.analyze_video("latest_recording.mp4", sample_rate=5)

# Only keep videos with significant bird content
if stats['bird_percentage'] < 10:
    print("Insufficient bird content, deleting...")
    # Handle deletion
else:
    print(f"βœ… Quality video: {stats['bird_percentage']:.1f}% bird content")

βš™οΈ Configuration Options

Core Options

OptionDescriptionDefaultValues
--modelYOLO model to useyolo26n.ptAny YOLO model
--thresholdBird detection confidence0.30.0 - 1.0
--sample-rateAnalyze every Nth frame51 - ∞
--outputSave JSON report-File path
--delete-fileAuto-delete 0% videosFalseFlag
--delete-folderAuto-delete 0% foldersFalseFlag
--logEnable loggingFalseFlag

Species Identification Options (v0.3.0+)

OptionDescriptionDefaultValues
--identify-speciesEnable species identificationFalseFlag
--species-modelHugging Face model namekamera-linux/german-bird-classifier-v2Model ID
--species-thresholdMin confidence for species label0.00.0 - 1.0
--multilingualShow names in EN/DE/JAFalseFlag

Video Annotation Options (v0.4.0+)

OptionDescriptionDefaultValues
--annotate-videoCreate annotated videoFalseFlag
--font-sizeLabel text size2012 - 32
--flag-dirCustom flag images directory (v0.4.2+)Auto-detectDirectory path
--annotate-outputCustom output pathAuto-generatedFile path

Sample Rate Recommendations

Video FPSSample RateFrames AnalyzedPerformance
30 fps1100% (all frames)Slow, highest precision
30 fps520%⭐ Recommended - Good balance
30 fps1010%Fast, sufficient
30 fps205%Very fast, basic check

Threshold Values

ThresholdDescriptionUse Case
0.2Very sensitiveDetects distant/partially obscured birds
0.3StandardBalanced detection
0.5ConservativeOnly clearly visible birds
0.7Very strictOnly perfect detections

πŸ” Technical Details

Model Search Hierarchy

The analyzer searches for YOLOv26 models in this order:

  • models/ directory (local)
  • config/models/ directory
  • Current directory
  • Auto-download from Ultralytics (fallback)

Detection Algorithm

  • Target Class: Bird (COCO class 14)
  • Inference: Frame-by-frame YOLOv26 detection
  • Segment Detection: Groups consecutive bird frames with max 2-second gaps
  • Performance: ~5x speedup with sample-rate=5 on 30fps videos

Species Identification (GPU-Optimized)

  • GPU Batch Processing: Processes all bird crops per frame simultaneously (v0.4.4+)
    • Single batch inference for all detected birds in a frame
    • Up to 8 crops processed in parallel (batch_size=8)
    • Up to 8x faster than sequential processing
    • Eliminates "pipelines sequentially on GPU" warning
  • Device Selection: Automatic CUDA (NVIDIA GPU) detection with CPU fallback
  • Model Loading: Downloads from Hugging Face Hub (~100-300MB, cached locally)
  • Threshold Filtering: Configurable confidence threshold (default: 0.3)
  • Multilingual Support: Bird names in English, German, and Japanese (39 species)

Output Format

JSON reports include:

{
  "video_file": "bird_video.mp4",
  "duration_seconds": 15.0,
  "total_frames": 450,
  "frames_analyzed": 90,
  "bird_percentage": 80.0,
  "bird_segments": [
    {
      "start": 2.0,
      "end": 8.0,
      "detections": 36
    }
  ]
}

πŸŽ“ Custom Model Training

Pre-trained bird species classifiers are trained on global datasets and often misidentify European garden birds as exotic species. For better accuracy with your specific bird species, you can train a custom model.

Why Train a Custom Model?

Problem with pre-trained models:

  • Identify common European birds (Kohlmeise, Blaumeise) as exotic Asian pheasants
  • Low confidence scores (often <0.1)
  • Trained on datasets dominated by American and exotic birds

Benefits of custom models:

  • High accuracy for YOUR specific bird species
  • Trained on YOUR camera setup and lighting conditions
  • Confidence scores >0.9 for correctly identified birds

Quick Start

The training tools are now available as a standalone package: vogel-model-trainer

1. Install the training package:

pip install vogel-model-trainer

2. Extract bird images from your videos:

vogel-trainer extract ~/Videos/kohlmeise.mp4 \
  --folder ~/vogel-training-data/ \
  --bird kohlmeise \
  --sample-rate 3

3. Organize dataset (80/20 train/val split):

vogel-trainer organize \
  --source ~/vogel-training-data/ \
  --output ~/vogel-training-data/organized/

4. Train the model (requires ~3-4 hours on Raspberry Pi 5):

vogel-trainer train

5. Use your trained model:

vogel-analyze --identify-species \
  --species-model ~/vogel-models/bird-classifier-*/final/ \
  video.mp4
  • Minimum: 30-50 images per bird species
  • Optimal: 100+ images per bird species
  • Balance: Similar number of images for each species

Complete Documentation

See the vogel-model-trainer documentation for:

  • Complete training workflow
  • Iterative training for better accuracy
  • Advanced usage and troubleshooting
  • Performance tips and best practices

πŸ“š Documentation

🀝 Contributing

Contributions are welcome! We appreciate bug reports, feature suggestions, documentation improvements, and code contributions.

Please read our Contributing Guide for details on:

  • How to set up your development environment
  • Our code style and guidelines
  • The pull request process
  • How to report bugs and suggest features

For security vulnerabilities, please see our Security Policy.

πŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

πŸ™ Acknowledgments

  • Ultralytics YOLOv26 - Powerful object detection framework
  • OpenCV - Computer vision library
  • Vogel-Kamera-Linux - Parent project for automated bird observation

πŸ“ž Support

Made with ❀️ by the Vogel-Kamera-Linux Team

Keywords

video

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts