tagged [ffmpeg]
How to minimize the delay in a live streaming with ffmpeg
How to minimize the delay in a live streaming with ffmpeg i have a problem. I would to do a live streaming with ffmpeg from my webcam. 1. I launch the ffserver and it works. 2. From another terminal I...
- Modified
- 20 May at 21:41
Using ffmpeg to change framerate
Using ffmpeg to change framerate I am trying to convert a video clip (MP4, yuv420p) from 30 fps to 24 fps. The number of frames is correct so my output should change from 20 minutes at 30fps to 25 min...
- Modified
- 2 Aug at 16:2
How to dump raw RTSP stream to file?
How to dump raw RTSP stream to file? Is it possible to dump a raw RTSP stream to file and then later decode the file to something playable? Currently I'm using FFmpeg to receive and decode the stream,...
Live FLV streaming in C# WebApi
Live FLV streaming in C# WebApi Currently I have a working live stream using webapi. By receiving a flv stream directly from ffmpeg and sending it straight to the client using PushStreamContent. This ...
- Modified
- 11 Jan at 22:26
How to concatenate two MP4 files using FFmpeg?
How to concatenate two MP4 files using FFmpeg? I'm trying to concatenate two mp4 files using ffmpeg. I need this to be an automatic process hence why I chose ffmpeg. I'm converting the two files into ...
Could not load or assembly or one of its dependencies
Could not load or assembly or one of its dependencies I am using Aforge.net frame work for doing image processing work. I have add 'AForge.Video.FFMPEG.dll' as a referance to my project. I am using VS...
- Modified
- 27 Aug at 15:22
Convert audio files to mp3 using ffmpeg
Convert audio files to mp3 using ffmpeg I need to convert audio files to mp3 using ffmpeg. When I write the command as `ffmpeg -i audio.ogg -acodec mp3 newfile.mp3`, I get the error: ``` FFmpeg versio...
FFmpeg skips rendering frames
FFmpeg skips rendering frames While I extract frames from a video I noticed that `ffmpeg` wont finish rendering certain images. The problem ended up being byte "padding" between two `jpeg` images. If ...
ffmpeg usage to encode a video to H264 codec format
ffmpeg usage to encode a video to H264 codec format I have a *.mp4 video file(MPEG4 video codec) and I am trying to convert this to a H264 video codec format(raw h.264 format) using ffmpeg on Linux(Ve...
Rotating videos with FFmpeg
Rotating videos with FFmpeg I have been trying to figure out how to rotate videos with FFmpeg. I am working with iPhone videos taken in portrait mode. I know how to determine the current degrees of ro...
- Modified
- 1 Sep at 22:55
Using FFmpeg in .net?
Using FFmpeg in .net? So I know its a fairly big challenge but I want to write a basic movie player/converter in c# using the FFmpeg library. However, the first obstacle I need to overcome is wrapping...
Stream video content through Web API 2
Stream video content through Web API 2 I'm in the process of working out what the best way is going to be to do the following: I have a bunch of CCTV footage files (MP4 files, ranging from 4MB-50MB in...
- Modified
- 23 May at 11:47
Working way to make video from images in C#
Working way to make video from images in C# Does anybody have a known reliable way to create a video from a series of image files? Before you mod me down for not searching for the answer before postin...
ffmpeg run from shell runs properly, but does not when called from within .NET
ffmpeg run from shell runs properly, but does not when called from within .NET I'm attempting to use ffmpeg (compiled on Windows with Cygwin) in a C# program, by using the `Process` class to spawn an ...
webm to mp4 conversion using ffmpeg
webm to mp4 conversion using ffmpeg When I try to convert a webm file to mp4 the output is very very choppy and it appears as if many frames have been dropped by ffmpeg I used the following commands t...
Best approach to real time http streaming to HTML5 video client
Best approach to real time http streaming to HTML5 video client I'm really stuck trying to understand the best way to stream real time output of ffmpeg to a HTML5 client using node.js, as there are a ...