I need to transcode video streaming from MJPEG to MP4, AVI or MKV format. Is it possible to do with ffmpeg or vlc? I am developing UWP Win10 app and there aren't many packages for this.
Edit: my code
VLCPreview.Source = "http://Admin:[email protected]:6021/cgi-bin/cmd/encoder?GET_STREAM"; /cmd/encoder?GET_STREAM try { HttpClientHandler aHandler = new HttpClientHandler(); aHandler.Credentials = new NetworkCredential("Admin", "123456"); aHandler.ClientCertificateOptions = ClientCertificateOption.Automatic; HttpClient aClient = new HttpClient(aHandler); aClient.DefaultRequestHeaders.ExpectContinue = false; //url get stream o web.Source HttpResponseMessage response = await aClient.GetAsync("http://192.168.0.21:6021/cgi-bin/cmd/encoder?GET_STREAM", HttpCompletionOption.ResponseHeadersRead);//urlLinkToOnlineStream Stream stream = await response.Content.ReadAsStreamAsync(); IInputStream inputStream = stream.AsInputStream(); ulong totalBytesRead = 0; while (true) { // Read from the web. IBuffer buffer = new Windows.Storage.Streams.Buffer(4096); buffer = await inputStream.ReadAsync(buffer, buffer.Capacity, InputStreamOptions.None); if (buffer.Length == 0) { break; } totalBytesRead += buffer.Length; await fileStream.WriteAsync(buffer); Debug.WriteLine("TotalBytesRead: {0:f}", totalBytesRead); if (StopRec == true) { break;} } transcode(destinationFile, sampleFileVidTranscoded); inputStream.Dispose(); fileStream.Dispose();