a library for the .Net framework that aims to simplify developing applications for editing and encoding audio and video using DirectShow.
Questions tagged [splicer]
8 questions
4
votes
1 answer
splicer c# an invalid media type was specified
I would like to join two or more videos in c# Application.So I'm using Splicer library.But I am using following but i throws exception "An invalid media type was specified".How to solve this I have tried a lot to solve it.
using (ITimeline timeLine…

Moon MALIK
- 41
- 4
2
votes
1 answer
Splicer, audio is cut off. Single image and audio in timeline :(
[Summary]
Using splicer for C#.
Trying to add voice-over to an image.
Added single image and audio track to a timeline.
However, the audio is cut off in the rendered video, and the video is shorter than it should be.
I've checked the audio clip…

Tayab
- 311
- 2
- 13
2
votes
0 answers
How to stop splicer render
I am using Splicer from
here with c#
using (WindowsMediaRenderer renderer = new WindowsMediaRenderer(timeline, "output.wmv", WindowsMediaProfiles.HighQualityVideo))
{
renderer.Render();
// How to Stop this render
}
}
I…

Mohammad Ahmad
- 192
- 2
- 12
1
vote
0 answers
how can i add specific video clip to several clips Automatically
I was wondering if anyone can HELP me cope with my Problem!
I want to add a specific video clip at the beginning of several clips(about 200 different video clips) , so using a simple video joiner is Not a good idea to do that(it takes several hours…

soheil6818
- 11
- 1
1
vote
1 answer
Working with FFMPEG / Splicer and C#
I have been trying to develop a C# app for a long time now which is intended to run on a server. It takes info from a data base and makes a video with it. I have been using libraries for that porpuse (Aforge). But now it looks like I HAVE to use…

fauvent
- 107
- 1
- 13
0
votes
0 answers
how to release video file after creation (c# Splicer)?
i use Splicer lib to create video in c# programm.
end of code:
IRenderer renderer1 = new AviFileRenderer(timeline, "1.avi");
IAsyncResult result = renderer1.BeginRender(null, null);
renderer1.EndRender(result);
After this "1.avi" stay blocked by…
0
votes
1 answer
Splicer video rendering
I am using Splicer from Codeplex, but I have difficulty to compile my sample code.
It returns me error because of
using (IRenderer renderer = new WindowsMediaRenderer(timeline, outputFile, WindowsMediaProfiles.HighQualityVideo))
It returns me "…

williamtio
- 1
- 1
0
votes
2 answers
Udemy course code doesn't work in Sublime. What am i doing wrong?
I'm taking a Udemy course on Python (my first language) and the environment of choice is Jupyter. When I try to write that code in Sublime, I can't get the same output (there are no errors).
def splicer(mystring):
if len(mystring)%2 == 0:
…

B9M8
- 47
- 5