Installation of ffmpeg and others on UWAMP - ffmpeg

i try to install clip bucket for making a youtube clone site but the script ask to install ffmpeg and others compression tools on the server and i dont know how to do it .
Lots of online host dont allow those libs for free.
I use UWAMP but dont know how to install ffmpeg on UWAMP ...
Anyone know ?

It seems like you are using Windows, if yes then you can install FFMPEG using following link.
https://github.com/adaptlearning/adapt_authoring/wiki/Installing-FFmpeg
Yes, you need SSH access for install FFMPEG and other tool on server. Free web-hosting does allow you to install FFMPEG and other Libraries. You need Atleast VPS for this.

Related

How to Install FFMpeg on centos 6 in 2022?

a client of mine asked to add videos to their website, i decided to install FFMpeg on their server so whenever they upload a video, the service automatically generates the first frame for the preview and encodes them in webm.
Sadly it seems to be impossible to install without having to compile it myself (which i don't really want to do as i have never done it before and don't want to risk breaking something in their server),
The server is running cento6 but EVERY repository that provides the centos6 version of FFMpeg seem to use dependencies from dead hosts (they are offline and unreachable), every solution i find ends up with the same error like "Couldn't resolve host 'apt.sw.be'"
I've changed yam repositories, installed apt-get to try with that instead of yam, disabled and enable repos like nux that seem to be very outdated, even followed posts that were published/updated recently like this but they all keep ending up with the the same "Couldn't resolve host..." when installing decencies.
Is there any live and updated repo that provides a way to install FFMpeg for centos6 with yum or apt-get in 2022?
Thanks
EDIT
Following Romeo's tip about downloading the binaries, i managed to install it but in my case i needed a older 32 bit version to make it work (else i'd get Kernel too old):
$ wget https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-4.0.3-32bit-static.tar.xz
$ tar xvf ffmpeg-4.0.3-32bit-static.tar.xz
$ sudo mv ffmpeg-4.0.3-32bit-static/ffmpeg ffmpeg-4.0.3-32bit-static/ffprobe /usr/local/bin/
What you can do is to try to install statically build ffmpeg binary. This will help you not to search for contemporary package and update your CentOS.
You can try this version (64bit version).

How do I incorporate FFMpeg into Laragon Local Server?

I need to use FFMpeg on my project to automatically generate thumbnails from videos uploaded to my site. I understand you need FFMpeg to do this. I can't seem to find any information on how to install FFMpeg into the Laragon Local Server. I found older tutorials on how to install FFMpeg into Xampp for example, but they are now out of date as the latest FFMpeg uses different file structures etc. Anyone know how to install FFMpeg to Laragon?
#Kevin K:
It is very simple to use FFMpeg with Laragon. Here's how:
Download the binaries:
https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2021-06-01-13-18/ffmpeg-n4.4-19-g8d172d9409-win64-gpl-4.4.zip
Unzip and move the 3 files in bin to C:\laragon\bin
ffmpeg.exe
ffplay.exe
ffprobe.exe
Open Laragon's Terminal Menu > Laragon > Terminal and check:
ffmpeg -v
You should use FFMpeg in your PHP code with library like:
https://github.com/PHP-FFMpeg/PHP-FFMpeg
Ref: https://forum.laragon.org/topic/2448/how-to-use-ffmpeg-to-edit-video-with-laragon

ffplay is not getting compiled on Amazon EC2

Asking this question as similar questions of stackoverflow didn't help me.
I wanted to install ffplay tool on my Amazon EC2 (Linux) instance. I have cloned the code from FFmpeg's official git repository.
executed ./configure and make. After these commands, there was no ffplay binary created. Only ffmpeg, ffprobe and ffserver binaries were generated.
Later tried with executing './configure --enable-ffplay' as suggested in few posts of web. Even this didn't work. Also i did not found any static binaries of ffplay which i could use for my testing
Can anyone suggest what was wrong with my build procedure ?
ffplay requires SDL2, so you need to install whatever package provides SDL.h (possibly SDL2-devel for RHEL based distros or libsdl2-dev for Debian based distors), or compile SDL2 if your distro does not provide it.
You won't need --enable-ffplay: that's only useful if you use --disable-tools or similar.
There is a similar issue here. But this could be used as reference.
Try these out:
Try installing SDL2 from RHEL or Debian distribution.
Try using --with-ffplay instead of --enable-ffplay as mentioned in the link above.

How read stream web cam in node.js for mac os?

I seen analog lib "camelot" and "imagesnap" in npm repositories.
"camelot" - work only in linux os (because it uses /dev/videoX).
"imagesnap" - support only create jpg and not support created stream. Same it lib is binary.
What may be a simple solution?
worked with lib https://github.com/wearefractal/camera,
for mac os need install opencv, i'm use brew install opencv.
it's really work!!
I haven't got everything working yet, but connecting to GStreamer over TCP from Node looks promising:
http://delog.wordpress.com/2011/04/26/stream-live-webm-video-to-browser-using-node-js-and-gstreamer/
The tutorial is about Linux, but most things should have an OSX equivalent. To get started:
Install XQuartz: https://xquartz.macosforge.org
brew install gstreamer
brew install gst-plugins-good
brew install gst-plugins-bad
If everything installed properly, this command should give you a test video source:
gst-launch-1.0 videotestsrc ! osxvideosink
I'm now trying to figure out how to get the webcam. I think the built-in webcam is locked down, but hopefully an external one might work.
I'm interested to hear if you make any progress!

how to install ffmpeg in cpanel

I heard that most probably cpanel server dont have ffmpeg preconfigured in it. Can you explain a way to install it in cpanel.
Please if you can guide me through the installtion of ffmpeg in cpanel server in step by step process.
Can anyone please also give me links of other servers which have ffmpeg preconfigured and set to run.
This appears to be a reasonably comprehensive guide, but my knowledge of the situation isn't good personally. There are a few other tutorials but this would be good as a separate tutorial/perhaps wiki because it's quite a common question I hear asked by my hosting clients.
http://www.eukhost.com/forums/f15/how-install-ffmpeg-ffmpeg-php-mplayer-mencoder-flv2tool-lame-mp3-encoder-4893/
perhaps also
serverhostingsecrets.com/tutorials/cpanel-ffmpeg-howto/
If you have CentoOS, RedHat or fedorra, you can install it using yum.
First add the dag repo.
http://dag.wieers.com/rpm/FAQ.php#B
rpm -Uhv http://apt.sw.be/redhat/el5/en/x86_64/rpmforge/RPMS//rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm
yum install ffmpeg ffmpeg-devel
Your can also install the mplayer and mencoder using yum from the dag repo
yum install mplayer mencoder

Resources