TheTaylorLee / docker-transcodeautomation

An automated media transcoding solution.
MIT License
6 stars 1 forks source link

Feature: FFProbe Stats #28

Open TheTaylorLee opened 1 year ago

TheTaylorLee commented 1 year ago

Feature Target Details

Considering adding a SQL table that stores probed media data. Would need to decide what to store in the database.

Why is this change needed? This would provide interesting information regarding the overall stored media. Data could then be leveraged to produce additional grafana stat views.

TheTaylorLee commented 1 year ago
$probe = ffprobe -loglevel -8 -print_format json -show_format -show_streams
$convert = $Probe | ConvertFrom-Json
$convert.<key01>.<key02>
$convert.streams[0].codec_name
TheTaylorLee commented 1 year ago

This grows the database significantly unless only retaining limited metadata. The performance impacts would not be worth the additional statistics.