-i - ignore errors
-c - continue
-t - use video title as file name
--extract-audio - extract audio track
| public void AddRating(string productId, int rating) | |
| { | |
| var products = GetProducts(); | |
| var query = products.First(x => x.Id == productId); | |
| if(query.Ratings == null) | |
| { | |
| query.Ratings = new int[] { rating }; | |
| } | |
| else |