expression-encoder

How to use directshow filter as a live input for Expression Encoder 4?

坚强是说给别人听的谎言 提交于 2020-01-30 08:12:26
问题 I have a directshow filter that reads M2TS stream and demux it. I can render video and audio in GraphStudio and see it. My question is how can I use this filter as a live source for Expression Encoder job? I saw some recommendations saying to use subgraphs, but I am not so familiar with DirectShow to understand what it is. Thank you in advance for any help. 回答1: Expression Encoder would look for DirectShow video source devices, which are typically cameras. You might want to implement your won

Can I play xesc file on Silverlight?

懵懂的女人 提交于 2020-01-05 04:05:10
问题 It seems very weird and I can't understand it, Why xesc, the output of Expression Encoder 4 Screen Capture, can't be play on Silverlight?? Why ScreenCaptureVideoProfile codec is always unknown? doesn't the left hand know what the right hand is doing?? 回答1: Answer from Microsoft Expression Encoder team Being optimized for screen capture, the XESC codec has dependencies that are platform dependant and thus doesn't really fit in the Silverlight model. http://social.expression.microsoft.com

One of the assemblies in MS Expression Encoder SDK fails to resolve

≡放荡痞女 提交于 2019-12-24 08:18:51
问题 I have an year or so old application which uses Expression Encoder 3 to generate thumbnails. Few of the users are complaining that they are receiving the following exception: Could not load file or assembly 'Microsoft.Expression.Encoder.Utilities.dll' or one of its dependencies. This application has failed to start because the application configuration is incorrect. The application contains in itself the required EE3 assemblies in the setup, so as such installation of Expression Encoder is

Custom virtual video capture device

不想你离开。 提交于 2019-12-20 05:45:08
问题 I`m new to media foundation and C++. But I want to create a virtual video capture device which can be used by Microsoft Expression Encoder. Can you tell me in which direction to look? I think it should be something working asynchronously and a source will be byte stream from mobile device. Thanks in advance. 回答1: I don't think you want to look into Media Foundation for this. Expression Encoder uses a richer API to capture video with, DirectShow . You want a virtual DirectShow camera, which

How to specify encoding bitrate while capturing from a webcam - MS Expression Encoder 4

假装没事ソ 提交于 2019-12-13 02:07:36
问题 I have a program to capture and save live webcam video. This is taken from sample programs coming with Expression Encoder 4. LiveJob job = new LiveJob(); EncoderDevice video = EncoderDevices.FindDevices(EncoderDeviceType.Video).Count > 0 ? EncoderDevices.FindDevices(EncoderDeviceType.Video)[0] : null; EncoderDevice audio = EncoderDevices.FindDevices(EncoderDeviceType.Audio).Count > 0 ? EncoderDevices.FindDevices(EncoderDeviceType.Audio)[0] : null; LiveDeviceSource deviceSource = job

Video encoded by Expression Encoder is 3 seconds long on YouTube

浪尽此生 提交于 2019-12-11 12:45:29
问题 I am trying to upload video created using MS Expression Encoder 4 to YouTube, but after processing any video is played in 3 seconds. Any ideas? Is it problem of encoder configuration or YouTube? Thank you. 回答1: I was running into the same issue when I encoded a video using the Expression Encoder SDK and uploading the videos to YouTube. I didn't experience the issue when I used the BaselineH264VideoProfile video profile. I also think the one that outputs WMV didn't experience the issue as well

Expression Encoder 3 SDK screen capture C# sample?

风流意气都作罢 提交于 2019-12-10 12:16:28
问题 I am using VSTS 2008 + .Net 3.5 + C# + Microsoft Expression 3 SDK. I want to capture screen and output a wmv file. I tried hard but can not found C# samples from Google. Any reference samples? 回答1: Wrong kind of tool, Expression Encoder is a transcoder. It requires a video format as input and encodes it to a different output format. You'll need to create a video of the screen first. Capturing a screen shot is easy enough, Graphics.CopyFromScreen() can do that. Generating a video would require

Set byte stream as live source in Expression Encoder 4

拜拜、爱过 提交于 2019-12-08 04:46:51
问题 I have Expression Encoder 4 which supports two sort of source types: Live Source and File Source Now, I want to achieve my byte stream to be set as live source in Expression Encoder for live broadcasting. I have read about directshow filters but I do not know how to use it. Please let me know if you get something on it. 回答1: A typical solution is to implement a virtual camera and stream data off it. Encoder will see it as a video capture device and you will be able to select it as a video

Deploying Expression Encoder SDK Without Installing

女生的网名这么多〃 提交于 2019-12-05 19:20:40
I am trying to prove a concept while using the Microsoft Expression Encoder 3 SDK. I am trying to deploy the SDK to my hosted web server to understand more about whether or not that will work and what else needs to be installed. I cannot get anything to work on the server. Here are the 4 Dlls that I understand that I need that I am deploying in my bin folder: Microsoft.Expression.Encoder.dll Microsoft.Expression.Encoder.Types.dll Microsoft.Expression.Encoder.Utilities.dll WindowsBase.dll Note: I have not "installed" Expression Encoder on the Web Server, which is using Windows Server 2008. I am

Custom virtual video capture device

吃可爱长大的小学妹 提交于 2019-12-02 09:23:38
I`m new to media foundation and C++. But I want to create a virtual video capture device which can be used by Microsoft Expression Encoder. Can you tell me in which direction to look? I think it should be something working asynchronously and a source will be byte stream from mobile device. Thanks in advance. Roman R. I don't think you want to look into Media Foundation for this. Expression Encoder uses a richer API to capture video with, DirectShow . You want a virtual DirectShow camera, which was discussed multiple times and has a simple sample project to start from. Virtual webcam input as