{% extends "base.html" %} {% block title %}Configuration - Encoder{% endblock %} {% block content %}

Configuration

Manage watch folders for video and audio encoding

← Back to Dashboard

Video Encoder Folders

{% if video_configs %} {% for config in video_configs %}
{{ config.watch_folder }}
Added: {{ config.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if config.watch_folder | path_exists %} Active {% else %} Not Found {% endif %}
{% endfor %} {% else %}

No video folders configured

{% endif %}

Video Encoder Settings

  • • Converts H.264 videos to H.265 (HEVC)
  • • Output format: MKV container
  • • Supported formats: MP4, AVI, MKV, MOV, WMV, FLV, WebM
  • • Preset: Medium, CRF: 28

Audio Encoder Folders

{% if audio_configs %} {% for config in audio_configs %}
{{ config.watch_folder }}
Added: {{ config.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if config.watch_folder | path_exists %} Active {% else %} Not Found {% endif %}
{% endfor %} {% else %}

No audio folders configured

{% endif %}

Audio Encoder Settings

  • • Converts FLAC files to MP3
  • • Output quality: 320 kbps
  • • Supported formats: FLAC, WAV, M4A, OGG
  • • Codec: libmp3lame
{% endblock %}