Questions tagged [ffmpeg]

FFmpeg is a free software project that produces libraries and programs for handling multimedia data. The most notable parts of FFmpeg are libavcodec, an audio/video codec library used by several other projects, libavformat, an audio/video container mux and demux library, and the ffmpeg command line program for transcoding multimedia files.

FFmpeg is a free software project that produces libraries and programs for handling multimedia data. The most notable parts of FFmpeg are libavcodec, an audio/video codec library used by several other projects, libavformat, an audio/video container mux and demux library, and the ffmpeg command line program for transcoding multimedia files.

99 questions
3
votes
4 answers

FFMPEG Install on EC2 - Amazon Linux

Hello Serverfault friends, I am about two days into attempting to install FFMPEG with dependencies on an AWS EC2 instance running the Amazon Linux AMI. I've installed FFMPEG on Ubuntu and Fedora systems with no problems in the past, and have read…
Oliver Holmberg
  • 143
  • 1
  • 7
2
votes
3 answers

ffmpeg on Ubuntu Intrepid (8.10) Server

I'm trying to get ffmpeg running on my server so I can use the PHP Video Toolkit successfully. I'm currently setting up my testing platform, which is a 32-bit Ubuntu 8.10 Intrepid Ibex Server. Obviously, my first attempt was apt-get install…
simonhamp
  • 465
  • 1
  • 5
  • 13
2
votes
1 answer

ffserver segmentationfault

This is my problem: viroos@plecak-transmisyjny:~/videotesty$ sudo ffserver -d -loglevel debug FFserver version SVN-r20420, Copyright (c) 2000-2009 Fabrice Bellard, et al. built on Oct 30 2009 21:56:18 with gcc 4.4.1 configuration: --enable-gpl…
Maciek Sawicki
  • 790
  • 1
  • 8
  • 21
2
votes
0 answers

Restart ffmpeg process streaming rtmp video if it fails using shell script

We use ffmpeg to forward streams live. Often due to unknown reasons or due to the stream stopping temporarily the command stops running in the background. What's the best way to monitor and continue to retry the ffmpeg command in an infinite…
Ben
  • 121
  • 5
2
votes
1 answer

How to create a RTMP server on linux (Gentoo)

I am trying to create a RTMP server to stream video files from my Linux server to the internet/network. I have been able to successfully use ffmpeg to stream to other RTMP servers like youtube, but how do I go about hosting my own on my RTMP server…
user221359
  • 21
  • 3
2
votes
1 answer

ffmpeg simple RTMP streaming

I am trying to launch up a rtmp transcoder server using ffmpeg; that receives udp MPEG-TS streams as input, transcodes it; and generates an rtmp output to a URL, that can be accessed by users to receive and play the rtmp stream. All these are…
sajad
  • 123
  • 2
  • 7
2
votes
0 answers

EC2 Linux AMI with ffmpeg (no yasm?)

I'm running a Basic 64-bit Amazon Linux AMI 2011.09 (AMI Id: ami-953b06e1) and I want to install ffmpeg into it so I can use it convert video. These are the commands I run after firing up a new instance: sudo -i yum update yum install gcc yum…
deadlyhifi
  • 123
  • 2
  • 6
2
votes
3 answers

%d in a Filename in Bash

I am using ffmpeg to convert a number of jpgs into an mp4 file and it seems to be working great, video.mp4 is created. this is the command I'm using: ffmpeg -r 0.1 -i uploads/image%d.jpg uploads/video.mp4 I have these files inside my uploads…
Doug Molineux
  • 423
  • 3
  • 7
  • 17
2
votes
1 answer

Specify ubuntu repository from which a package is installed?

I want to install ffmpeg from mediubuntu. I've installed the repository per the instructions on: http://medibuntu.org/repository.php My conf.d repository listing: /etc/apt/sources.list.d# less medibuntu.list ## Please report any bug on…
Gray Race
  • 853
  • 3
  • 11
  • 22
2
votes
0 answers

How to avoid critical security issues introduced by ffmpeg? which seems to be a dependency of DeepFace for running opencv in linux environment

I was trying to run DeepFace in docker and when I ran the container I got an error related to OpenCV. Following online suggestions, I downloaded the FFmpeg package and it resolved the OpenCV error and everything was working fine inside the…
1
vote
2 answers

How to save the converted file to another system by ffmpeg

i want to developing a service of online converter in local network by ffmpeg. the service receives address of file to converting and output address for put converted file to it. can ffmpeg do saving output file in another system in local network…
soroush
  • 415
  • 1
  • 5
  • 6
1
vote
4 answers

How to install FFMPEG encoders on Linux CentOS 5 Server

I need to install LAME MP3 Encoder Libogg + Libvorbis Mencoder and also Mplayer FFMpeg-PHP For a script called PHPmotion. I do have root access so please does anyone have a step by step. I am fairly comfortable with linux commands, but I am not…
user26179
1
vote
1 answer

how to run 10 process and montring it

i have about 10-15 FFmpeg Process for streaming server like this: ffmpeg -i "http://ip/play/a03i" -vcodec copy -acodec copy -f flv "rtmp://ip:80/APP/Name" am use the Nginx-rtmp module to run it using the exec_static Directive but i can't…
Mohammed
  • 11
  • 2
1
vote
1 answer

Unable to install ffmpeg-php on Ubuntu

When I searched for this error, it seems to be more common in CentOS but I'm using Ubuntu 15.10. My issue is that I've followed this installation on ffmpeg-php's site and I've ran into an error when doing this command. ./configure && make The…
1
vote
1 answer

configure nginx to autolaunch ffmpeg

I would like ffmpeg to be autolaunched from nginx when it starts and provide a converted dash stream for the users who visit my webserver. Right now I can go to: http://localhost:18080/dash/twitch.mpd but for this I have to run ffmpeg -re -i…
defiler
  • 11
  • 2