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
0
votes
1 answer

Diagnosing ffmpeg high server load

Would anyone be able to help with info on why I have such a high server load but total CPU usage is under 50% and loads of free RAM? I'm running 60 instances of ffmpeg on a Ryzen 1700X. Here's a sample: top - 23:06:56 up 14 days, 9:18, 1 user, …
Paul
  • 11
  • 1
0
votes
1 answer

ffmpeg: When creating a slice of an audio file, how do i also copy over all the meta data from the original file?

That's my question :) the command i'm using is below ffmpeg -ss 00:01:00 -t 00:00:45 -acodec copy -i original.mp3 new_file.mp3 Thanks for any help!! EDIT: Solution ffmpeg -ss 00:01:00 -t 00:00:45 -map_meta_data new_track.mp3:original.mp3 -acodec…
Jeff
0
votes
2 answers

FFMPEG works on Console but doesn't work in PHP script on Ubuntu

I have this aplication where I need to convert video files to MP4 and then compress it. I'm trying to use FFMPEG to get this to work. Tried the command lines in the console and it works great Converting ffmpeg -i teste.avi…
Victor Ferreira
  • 135
  • 1
  • 1
  • 5
0
votes
1 answer

ffmpeg mp4 and webm files save to standard folder but only webm to mounted folder

So i am running an ffmpeg command on my linux server using the php exec command : exec("(nohup nice -n 19 " . $ffmpegPath . " -y -i " . $srcFile . " -f mp4 -pass 1 -passlogfile " . $video_pass_log . " -vcodec libx264 -cpu-used 0 -threads 1…
Jizbo Jonez
  • 117
  • 1
  • 10
0
votes
1 answer

ffmpeg with php exec disabled?

The Gallery2 script uses SYSTEM() & EXEC() to call FFMPEG For security reasons both those PHP functions appear to have been disabled on my shared web hosting server. Is there another method to use for executing FFMPEG?
Clear.Cache
  • 89
  • 1
  • 1
  • 11
0
votes
3 answers

ffmpeg fully html 5 converion supported

I need to know about library that required for ffmpeg for convert any format of audio and video for supported following format to have best configuration to convert audio and video files for html5 formats. I need for support mp3 and ogg for audio…
0
votes
1 answer

Packages are installed on server but not displaying in phpinfo()

I have installed imagemagick and ffmpeg on my CentOs 5.5 Godaddy VPS. I have added extension in php.ini also. I can able to see the installed packages in /usr/local/bin. But when I print phpinfo(), I am not able to see those. Not event I can use…
onkar
  • 113
  • 1
  • 3
0
votes
3 answers

Install FFMPEG on Shared Hosting server

I have godaddy shared hosting server running under linux. I am trying to install ffmpeg on server but I am unable to install it. on godaddy, yum is not working. Anybody have successfully installed FFMPEG on shared hosting? Can you please let me…
onkar
  • 113
  • 1
  • 3
0
votes
5 answers

FFserver & Apache on the same port

I've just setup a fresh install of apache&ffserver on my dedicated server. Everything work fine and I can play my movie in a flashplayer (because I encode my stream in H264/AAC) served by my apache. But the flashplayer play the stream on the…
plop
0
votes
1 answer

ffmpeg-php installation error on centos

I've installed ffmpeg and and ffmpeg-php so many before and it worked, today i'm having an error when i run make or make install, i get this error make: *** [ffmpeg_frame.lo] Error 1 i tried these solutions [1] [2] and won't fix it (at least for…
user
  • 849
  • 3
  • 13
  • 18
0
votes
1 answer

Best method to install ffmpeg and ffmpeg-php?

Possible Duplicate: FFMpeg-PHP Installation Error I'm able to get FFmpeg installed on my server but ffmpeg-php NEVER installs correctly. This happens every time: FFMpeg-PHP Installation Error Is there something wrong with the ffmpeg…
tundoopani
  • 11
  • 1
  • 5
0
votes
3 answers

FFMpeg-PHP Installation Error

While installing FFmpeg-PHP, I got this interesting error: /usr/downloads/ffmpeg-php-0.6.0/ffmpeg_movie.c: In function 'zim_ffmpeg_movie_getAudioStreamId': /usr/downloads/ffmpeg-php-0.6.0/ffmpeg_movie.c:1051: error: 'CODEC_TYPE_AUDIO'…
tundoopani
  • 11
  • 1
  • 5
0
votes
1 answer

Detect if -vf is supported (or not) in FFMPEG

According to the FFMPEG docs, the old cropping and padding syntax is no longer supported: -croptop size -cropbottom size -cropleft size -cropright size All the crop options have been removed. Use -vf crop=width:height:x:y instead. -padtop…
Alix Axel
  • 2,803
  • 6
  • 29
  • 30
0
votes
1 answer

Install and configure ffmpeg on Suse 10 (without yum)

can someone direct me over a good tutorial on ffmpeg installation on Linux (specifically on Suse 10). I have to say the yum install ffmpeg option is unavaiable, as yum isn't even present on this Linux box. Furthermore, I have to install a specified…
Riduidel
  • 121
  • 7
0
votes
1 answer

Cannot write log file 'ffmpeg2pass-0.log' for pass-1 encoding: Permission denied

Our PHP application is installed as 'root' on a Redhat5/CentOS system at: /var/www/html/beta/ After disabling SELINUX in order to allow these scripts to execute other programs on the system - What permissions are needed to run a system() command…
siliconpi
  • 1,807
  • 6
  • 32
  • 46