Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
make: *** [youtube-dl] Error 127 #21825
Comments
|
Search |
|
For those who visit this thread in search of an answer, inspired by @dstftw, I (partially) solved my predicament by following the following steps:
Your exe would be generated in the P.S.: I couldn't get this setup.exe to behave as a true youtube-dl.exe binary that is otherwise made available to us by the youtube-dl team. So please don't get your hopes high. However, I would be immensely happy if you could take anything out of the above mentioned process and build a fully functional EXE. Please do share the corrections needed in the above process for others benefit too. |
I think that the command that you're looking for is |
**Please can you help me? I have tried without success to compile this youttube-dl and have an exe that works ( i need it with a** raiplay fix, and last build doesn't have it )
|
Checklist
Question
WRITE QUESTION HERE
I am trying to build a youtube-dl binary on my local machine by using the make command as per phihag's post here. However, I'm getting the following:
BigAppa@DESKTOP-UOLLR4C MINGW64 ~/youtube-dl
$ make
FIND: Parameter format not correct
mkdir -p zip
for d in youtube_dl youtube_dl/downloader youtube_dl/extractor youtube_dl/postprocessor ; do
mkdir -p zip/$d ;
cp -pPR $d/.py zip/$d/ ;
done
touch -t 200001010101 zip/youtube_dl/.py zip/youtube_dl//.py
mv zip/youtube_dl/main.py zip/
cd zip ; zip -q ../youtube-dl youtube_dl/.py youtube_dl//*.py main.py
/usr/bin/sh: zip: command not found
make: *** [youtube-dl] Error 127
Instead of
make, I also triedmake youtube-dl. However, the results weren't any different:BigAppa@DESKTOP-UOLLR4C MINGW64 ~/youtube-dl
$ make youtube-dl
FIND: Parameter format not correct
mkdir -p zip
for d in youtube_dl youtube_dl/downloader youtube_dl/extractor youtube_dl/postprocessor ; do
mkdir -p zip/$d ;
cp -pPR $d/.py zip/$d/ ;
done
touch -t 200001010101 zip/youtube_dl/.py zip/youtube_dl//.py
mv zip/youtube_dl/main.py zip/
cd zip ; zip -q ../youtube-dl youtube_dl/.py youtube_dl//*.py main.py
/usr/bin/sh: zip: command not found
make: *** [youtube-dl] Error 127
Kindly suggest a possible solution. I got a FFMEG malformed AAC bitstream error when I downloaded a video with youtube-dl source alone, without ffmpeg files in youtube clone directory on local machine. To not let the issue recur, I wish to build a local youtube-dl.exe and place it in the same folder as ffmpeg files.