Open GoogleCodeExporter opened 8 years ago
This part I just love :) lol
public VlcStream()
{
throw new Exception("Not Implemented");
}
Original comment by andrew.k...@gmail.com
on 5 Sep 2011 at 12:07
That's been auto-generated :( Helpful eh
Original comment by ad...@developerinabox.com
on 5 Sep 2011 at 11:54
this looks interesting - do you have a sample line that could be used for
connecting to a camera that is using rtsp to stream mjpeg?
thanks,
sid
Original comment by sidcon...@gmail.com
on 19 Sep 2011 at 7:27
you should just be able to pass it the rtsp url - if you can get it working in
VLC then it'll work through this
Original comment by ad...@activeunlimited.com
on 19 Sep 2011 at 10:34
The code/solution does not seem to be clean to me.
Original comment by andrew.k...@gmail.com
on 8 Feb 2012 at 10:02
here's an updated version of it.
Original comment by ad...@activeunlimited.com
on 9 Feb 2012 at 1:58
Attachments:
Interesting… I'll have to try it someday.
You should update the XMLDoc, it still says MJPEG in several places. Maybe
replace the sample code with what you put here.
It will also probably be better to use AForge coding conventions (no leading
underscore on private members for example), and create properties instead of
having public members.
I will try to integrate it in my app when time permits. Support for network
cameras doing MPEG4 streaming is interesting.
Original comment by j...@kinovea.org
on 10 Feb 2012 at 11:11
Some news about it?
I'm trying to make it working but I receive always this message:
"The command line options could not be parsed. Make sure they are valid."
and
"Failed to initialize libVLC. Possible reasons : Some of the arguments may be
incorrect. VLC dlls' version mismatch".
I tried for many libvlc.dll versions and args.
Some help?
####################################################################
string NL = Environment.NewLine;
string vlcargs = ""
+ "-I" + NL
+ "dummy" + NL
+ "--ignore-config" + NL
+ "--plugin-path=\"" + VlcHelper.VlcPluginsFolder + "\""
+ "";
string[] inargs = vlcargs.Split(Environment.NewLine.ToCharArray(),
StringSplitOptions.RemoveEmptyEntries);
var vlcSource = new VlcStream(form.URL, inargs);
####################################################################
Original comment by t...@tera.net.br
on 5 Jun 2013 at 6:21
>> Some news about it?
No. The suggested implementation is not something I would ever put into the
framework. So if someone needs it, then I would suggest resolving any issues on
your own.
Original comment by andrew.k...@gmail.com
on 5 Jun 2013 at 6:41
Maybe the author of this suggestion can create a new project as extension to
aforge, since this will not be implemented into aforge.
Thank you all.
Original comment by t...@tera.net.br
on 5 Jun 2013 at 7:12
Is there a C# project that is available to compile the class so that I can
debug a problem on the image been passed to the event that is not changing, the
event is firing perfectly but the image remains "stuck" from a basler IP camera.
Thanks for now
Original comment by terencew...@gmail.com
on 17 Jul 2014 at 8:07
Original issue reported on code.google.com by
ad...@activeunlimited.com
on 13 Aug 2011 at 3:13Attachments: