Archived
1
0

Merged PR 17: Version 0.2.181021

- Closed captions fixes
- Merged to YoutubeExplode instead of MyToolkit for video sources
- Video playback fixes
- Internal links support
- Subscription button fixed
- Comments threads fixes and improvements (highlighting author's and user's names)
- General bug fixes
This commit is contained in:
Michael Gordeev
2018-10-20 22:03:04 +00:00
parent cc117a161c
commit f637c18e22
32 changed files with 863 additions and 591 deletions
+7
View File
@@ -22,5 +22,12 @@ namespace FoxTube.Classes
Duration = TimeSpan.FromMilliseconds(duration);
Text = text;
}
public Caption(double startTime, double duration, string text)
{
Start = TimeSpan.FromSeconds(startTime);
Duration = TimeSpan.FromSeconds(duration);
Text = text;
}
}
}