aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities
diff options
context:
space:
mode:
authornicknsy <20588554+nicknsy@users.noreply.github.com>2023-02-22 00:08:35 -0800
committerNick <20588554+nicknsy@users.noreply.github.com>2023-06-22 16:19:59 -0700
commitca7d1a13000ad948eebbfdeb40542312f3e37d3e (patch)
tree6ff31f7f318410c62ba3278aeac71f26e9626603 /MediaBrowser.Model/Entities
parenta1eb2f6ea8cd78d527f1ae395378419f016208ab (diff)
Trickplay generation, manager, storage
Diffstat (limited to 'MediaBrowser.Model/Entities')
-rw-r--r--MediaBrowser.Model/Entities/TrickplayTilesInfo.cs50
1 files changed, 50 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/TrickplayTilesInfo.cs b/MediaBrowser.Model/Entities/TrickplayTilesInfo.cs
new file mode 100644
index 000000000..84b6b0322
--- /dev/null
+++ b/MediaBrowser.Model/Entities/TrickplayTilesInfo.cs
@@ -0,0 +1,50 @@
+namespace MediaBrowser.Model.Entities
+{
+ /// <summary>
+ /// Class TrickplayTilesInfo.
+ /// </summary>
+ public class TrickplayTilesInfo
+ {
+ /// <summary>
+ /// Gets or sets width of an individual tile.
+ /// </summary>
+ /// <value>The width.</value>
+ public int Width { get; set; }
+
+ /// <summary>
+ /// Gets or sets height of an individual tile.
+ /// </summary>
+ /// <value>The height.</value>
+ public int Height { get; set; }
+
+ /// <summary>
+ /// Gets or sets amount of tiles per row.
+ /// </summary>
+ /// <value>The tile grid's width.</value>
+ public int TileWidth { get; set; }
+
+ /// <summary>
+ /// Gets or sets amount of tiles per column.
+ /// </summary>
+ /// <value>The tile grid's height.</value>
+ public int TileHeight { get; set; }
+
+ /// <summary>
+ /// Gets or sets total amount of non-black tiles.
+ /// </summary>
+ /// <value>The tile count.</value>
+ public int TileCount { get; set; }
+
+ /// <summary>
+ /// Gets or sets interval in milliseconds between each trickplay tile.
+ /// </summary>
+ /// <value>The interval.</value>
+ public int Interval { get; set; }
+
+ /// <summary>
+ /// Gets or sets peak bandwith usage in bits per second.
+ /// </summary>
+ /// <value>The bandwidth.</value>
+ public int Bandwidth { get; set; }
+ }
+}