Questions tagged [expression-encoder-sdk]

The Microsoft Expression Encoder SDK gives a developer access to all the tools to create encoded video and audio that will meet their streaming or broadcasting needs. This topic will provide an overview of all the options available to users of the SDK.

53 questions
0
votes
2 answers

How to override/replace microsoft essential encoder file?

Using encoder (Link), To record video which is playing on screen for Selenium automation script. ScreenCaptureJob scj = new ScreenCaptureJob(); scj.OutputScreenCaptureFileName = "XXX.avi"; scj.Start(); It is required to delete existing file,…
0
votes
1 answer

Microsoft Expression Encoder. ScreenCapture

I noticed that Exression Encoder 4 screen recordings are sometimes shorter than specified. E.g. a 5 minute recording yields only 15 seconds of video. This seems to be related to the audio being captured at the same time as the video. Initially I was…
user457588
  • 331
  • 5
  • 11
0
votes
1 answer

Expression Encoder ScreenCaptureJob not recording

Hi I was wondering if anyone would have a solution to my problem here? I have started to use ScreenCaptureJob in my TestAutomation Framework and found that for some reason, although it may work I find that if I leave my PC logged in for the very…
0
votes
1 answer

Expression Encoder SDK in Silverlight Application

We are trying to build a silverlight application that allows a user to stream video to a IIS smooth streaming server using the Encoder SDK. This application will stream video from a users desk to a TV screen at our front desk that is connected to a…
0
votes
1 answer

Specify audio output language in Expression Encoder

I'm using the Expression Encoder 3 SDK and I'm trying to specify the output audio language. The ultimate reason I'm doing this is to encode an audio track as english and specify other, optional, audio tracks as other languages. Expression Encoder…
0
votes
0 answers

How to mirror (flip horizontally) and image using expression encoder and .net 4.5

I am building a application and it seems that image is wrongly mirrored (if I raise my left finger up, it shows my right finder is raised and vice versa). Here is some of my code
0
votes
2 answers

Expression Encoder 3 SDK screen capture C# sample?

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?
0
votes
0 answers

Expression Encoder Free version vs Pro version

I am evaluating a media encode/playback technology for my media project[I need to do stuff like clipping/trimming/joining video, screen capture, add overlays etc], its a WPF/C# based project. I have gone through Expression Encoder/Media…
0
votes
2 answers

Expression Encoder 4 in a WCF service

I am trying to write a WCF service that would run in IIS 8 and would use the Expression Encoder SDK to open a video file and then encode it as a WMV. The following code works fine when it's in a desktop application I wrote earlier. Job job = new…
0
votes
1 answer

c# - expression encoder - does not capture system audio

I'm trying to capture my webcam and system audio using Expression Encoder, the webcam works fine but the system audio is just silent. I followed the tutorial here: CodeProject Expression Encoder Tutorial but it isn't working for me properly. When I…
0
votes
1 answer

Transform manager error with large files only

I'm using IIS Transform Manager to transcode my .ISMV files. All the configuration is working file with small size files like 100 MB, 400 MB.. etc But when I try to transcode 1.36 GB file, I'm getting following error (I'm using VC-1 IIS Smooth…
0
votes
1 answer

multiple audio streams in smooth streaming manifest

How to add multiple audio tracks in a manifest like THIS. Actually I have two publish points, one for Video+Audio and one for Audio only. I want to play both feeds in SMF together. EE doesn't support this. How to do it? How they added multiple audio…
waghekapil
  • 321
  • 1
  • 5
  • 22
0
votes
1 answer

Black preview screen working with Expression.Encoder and webcam

I wrote some C# code interface with a Logitech webcam using Expression.Encoder. The code was pretty easy to set it and works beautifully on my machine and my tester's machine. Unfortunately out in the field the preview screen for the camera shows…
Siegmund Nagel
  • 1,321
  • 2
  • 11
  • 19
0
votes
2 answers

Microsoft ENcoder SDK memory leak

I am using EE4 and every time I call _deviceSource.PreviewWindow = new PreviewWindow(new HandleRef(picBox, picBox.Handle)); the memory use increases by around 60 MB. The problem is that when I close the form and dispose all the resources on _job and…
0
votes
1 answer

Expression encoder: change file name after encoding

I'm using Microsoft Expression Encoder and this is my code using (LiveJob job = new LiveJob()) { // Creates file source for encoding LiveFileSource fileSource = job.AddFileSource(DataDirectory); // Sets…