Click here to Skip to main content
15,903,779 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: How to "update" old .NET code to current versions Pin
lewist571-Dec-23 3:53
lewist571-Dec-23 3:53 
GeneralRe: How to "update" old .NET code to current versions Pin
Richard MacCutchan1-Dec-23 4:27
mveRichard MacCutchan1-Dec-23 4:27 
GeneralRe: How to "update" old .NET code to current versions Pin
Andre Oosthuizen1-Dec-23 22:09
mveAndre Oosthuizen1-Dec-23 22:09 
GeneralRe: How to "update" old .NET code to current versions Pin
Richard MacCutchan1-Dec-23 22:18
mveRichard MacCutchan1-Dec-23 22:18 
GeneralRe: How to "update" old .NET code to current versions Pin
Andre Oosthuizen1-Dec-23 22:59
mveAndre Oosthuizen1-Dec-23 22:59 
GeneralRe: How to "update" old .NET code to current versions Pin
Dave Kreskowiak1-Dec-23 5:18
mveDave Kreskowiak1-Dec-23 5:18 
GeneralRe: How to "update" old .NET code to current versions Pin
jschell1-Dec-23 6:09
jschell1-Dec-23 6:09 
GeneralRe: How to "update" old .NET code to current versions Pin
Gerry Schmitz1-Dec-23 6:57
mveGerry Schmitz1-Dec-23 6:57 
AnswerRe: How to "update" old .NET code to current versions Pin
jschell1-Dec-23 6:23
jschell1-Dec-23 6:23 
GeneralRe: How to "update" old .NET code to current versions Pin
lewist572-Dec-23 3:27
lewist572-Dec-23 3:27 
QuestionWorking with fonts and chars (⬤) in Win forms and OS versions, 10 compared to 7 Pin
jkirkerx24-Oct-23 11:34
professionaljkirkerx24-Oct-23 11:34 
AnswerRe: Working with fonts and chars (⬤) in Win forms and OS versions, 10 compared to 7 Pin
Gerry Schmitz24-Oct-23 19:32
mveGerry Schmitz24-Oct-23 19:32 
GeneralRe: Working with fonts and chars (⬤) in Win forms and OS versions, 10 compared to 7 Pin
jkirkerx24-Oct-23 20:48
professionaljkirkerx24-Oct-23 20:48 
GeneralRe: Working with fonts and chars (⬤) in Win forms and OS versions, 10 compared to 7 Pin
jkirkerx26-Oct-23 9:30
professionaljkirkerx26-Oct-23 9:30 
GeneralRe: Working with fonts and chars (⬤) in Win forms and OS versions, 10 compared to 7 Pin
Gerry Schmitz27-Oct-23 6:45
mveGerry Schmitz27-Oct-23 6:45 
GeneralRe: Working with fonts and chars (⬤) in Win forms and OS versions, 10 compared to 7 Pin
jkirkerx27-Oct-23 9:05
professionaljkirkerx27-Oct-23 9:05 
GeneralRe: Working with fonts and chars (⬤) in Win forms and OS versions, 10 compared to 7 Pin
Gerry Schmitz28-Oct-23 5:37
mveGerry Schmitz28-Oct-23 5:37 
GeneralRe: Working with fonts and chars (⬤) in Win forms and OS versions, 10 compared to 7 Pin
jkirkerx28-Oct-23 17:28
professionaljkirkerx28-Oct-23 17:28 
GeneralRe: Working with fonts and chars (⬤) in Win forms and OS versions, 10 compared to 7 Pin
Gerry Schmitz29-Oct-23 6:04
mveGerry Schmitz29-Oct-23 6:04 
GeneralRe: Working with fonts and chars (⬤) in Win forms and OS versions, 10 compared to 7 Pin
jkirkerx29-Oct-23 11:46
professionaljkirkerx29-Oct-23 11:46 
GeneralRe: Working with fonts and chars (⬤) in Win forms and OS versions, 10 compared to 7 Pin
Gerry Schmitz29-Oct-23 17:24
mveGerry Schmitz29-Oct-23 17:24 
GeneralRe: Working with fonts and chars (⬤) in Win forms and OS versions, 10 compared to 7 Pin
jkirkerx29-Oct-23 17:50
professionaljkirkerx29-Oct-23 17:50 
GeneralRe: Working with fonts and chars (⬤) in Win forms and OS versions, 10 compared to 7 Pin
jkirkerx30-Oct-23 10:30
professionaljkirkerx30-Oct-23 10:30 
QuestionCapturing a still from a RTSP stream Pin
Member 1499589618-Sep-23 23:43
Member 1499589618-Sep-23 23:43 
Good morning,

I'm trying to capture an image from a RTSP stream using ffmpeg.

I'm struggling, it is as if ffmpeg isnt working. A snip from my code is below:
using System.Runtime.InteropServices;
using FFmpeg.AutoGen;
using SixLabors.ImageSharp.Formats.Png;
using SixLabors.ImageSharp.Formats;

Class Program
{
    unsafe static void Main(string[] args)
    {
string inputUrl = "rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mp4"; 


ffmpeg.avformat_open_input(&pFormatContext, inputUrl, null, null);


The error that I'm receiving which is related to the last line of code is:

System.NotSupportedException
  HResult=0x80131515
  Message=Specified method is not supported.
  Source=FFmpeg.AutoGen
  StackTrace:
   at FFmpeg.AutoGen.DynamicallyLoadedBindings.<>c.<Initialize>b__2_1284(AVFormatContext** <p0>, String <p1>, AVInputFormat* <p2>, AVDictionary** <p3>)
   at FFmpeg.AutoGen.ffmpeg.avformat_open_input(AVFormatContext** ps, String url, AVInputFormat* fmt, AVDictionary** options)
   at Program.Main(String[] args)


Any help would be appreciated,

Freddie
AnswerRe: Capturing a still from a RTSP stream Pin
Richard Deeming19-Sep-23 0:17
mveRichard Deeming19-Sep-23 0:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.