Questions tagged [sharpffmpeg]

SharpFFmpeg is a C# binding of ffmpeg. Its goal is to provide the facility that allows .NET developers to easily create audio and video applications.

SharpFFmpeg is a C# binding of ffmpeg. The goal of SharpFFmpeg is to provide the facility that allows .NET developers to easily create audio and video applications.

16 questions
6
votes
1 answer

switch between video streaming

I am struggling with switching between multiple live streams. For example, I have five live streaming servers streaming(HTTP or RTSP) and I want to put some broker between those (five) streaming sources and destination so that output to the…
3
votes
1 answer

FFmpeg for Windows Phone development

I have used FFmpeg in ASP.Net web-based applications. Now I want to use it for Windows Phone development. Is it possible to use it? If yes, then how?
2
votes
0 answers

Encoding raw frame to H264 using SharpFFmpeg

I want to encode raw frame (byte[]) to H264 using SharpFFmpeg. Code is: public void Encoder(byte[] capturedFrame) { int returnValue; FFmpeg.avcodec_init(); FFmpeg.avcodec_register_all(); IntPtr codec =…
HelloWorld
  • 33
  • 1
  • 4
2
votes
2 answers

SharpFFMpeg ffmpeg conversion tutoiral

I am after a good tutorial or how to on using SharpFFMpeg or if there is an easy way to use ffmpeg in c# ... I would like to convert video.(x format) to video.flv taking screenshots and saving them as i go. If there is a good tutorial out there or…
Kieran
  • 17,572
  • 7
  • 45
  • 53
2
votes
0 answers

Using ffmpeg-sharp, convert a wav to mp3

Using the ffmpeg-sharp project, how do I convert a wav to mp3? I feel silly to ask, but I can't find any explanation on how to do it.
marcelo-ferraz
  • 3,147
  • 4
  • 38
  • 55
2
votes
2 answers

I have a log file with RTP packets: now what?

I have a log file with RTP packets coming off of a black box device. I also have a corresponding SDP file (RTSP DESCRIBE) for that. I need to convert this file into some kind of playable video file. Can I pass these two files to FFMpeg or VLC or…
Brannon
  • 5,324
  • 4
  • 35
  • 83
1
vote
1 answer

FFmpeg (sharpFFmpeg) decoding - Protected memory error

I'm trying to use C# binding of FFmpeg library calling SharpFFmpeg to decode H264 video stream that I receive by RTP. I think I correctly decapsulate NALUs from RTP-packets, but I can't decode complete frames. Function avcodec_decode_video calling…
mazharenko.a
  • 21
  • 1
  • 5
0
votes
0 answers

Are there any examples/documentation available that demonstrate how to use FFMPEG libraries directly in Python/C instead of the command line?

I want to perform the operation done by the below command line of FFMPEG but only using the command line. Instead I want to use the underlying libraries directly in Python and C to perform the operation: ffmpeg -i "Filename.ts" -map 0:d -c copy -f…
Zaid Bhat
  • 1
  • 1
0
votes
1 answer

ffmpeg aloop filter not working correctlly

I am trying to run FFmpeg Command as follow -i "v1.mov" -i "0.mp3" -filter_complex…
0
votes
1 answer

How to convert from .h264 to .ts using FFmpeg wrapper for C#/.NET?

Context I'm using FFMpegCore in my .NET Core API project that receives a .h264 file (sent in a binary format that is received and converted into a byte array) to be converted to a .ts. I want to convert a .h264 stream into a .ts output stream using…
juan_marti
  • 433
  • 1
  • 3
  • 17
0
votes
1 answer

Is it possible to use Memory Stream how input file for FFMpeg?

I'm trying to work with ffmpeg in a .NET application. Is it possible to use a memory stream instead -i [string inputFilePath] to get some frames for example? Many thanks for any answer.
0
votes
0 answers

Convert mp4 video to m3u8 format with C# ffmpack

I can convert the file with the extension mp4 in my hand from the code line related to PowerShell to m3u8 format. ffmpeg -i inputVideo.mp4 -profile:v baseline -level 3.0 -s 960x540 -start_number 0 -hls_time 10 -hls_list_size 0 -f hls…
0
votes
1 answer

create animated gif from video using ffmpeg and c#

I am trying to get animated gif from an video file.I cant create gif from below code. could any one help me in solving this problem. Process ffmpeg; // creating process string video; string thumb; // string text =…
Hari Krishna
  • 2,372
  • 2
  • 11
  • 24
0
votes
1 answer

Identifying values for arguments in asp.net c#

I'm searching online for converting video and capturing thumbnail image after uploading the video file. I found something similar with this link http://ramcrishna.blogspot.com/2008/09/playing-videos-like-youtube-and.html but there's something I want…
timmack
  • 590
  • 2
  • 12
  • 43
0
votes
0 answers

How to run FFMPEG at my web host server

I want to perform some video process at my web host server. I don't think the web host server will allow me to execute an exe file for security reasons. Should I use SharpFFMpeg? I have downloaded SharpFFMpeg. But it's lacking a proper…
Hoy Cheung
  • 1,552
  • 3
  • 19
  • 36
1
2