Download only the audio from a video on Vimeo.

The video hosting site Vimeo works the same as Youtube, it has separate files for video and audio that are put together to play an online video. This can be downloaded easily with a script. The youtube-dl script can download only the audio from a Youtube video, and it can…

Read More

How to download only the audio from a Youtube video.

It is possible to download just the audio from a Youtube video. This is very easy. Use youtube-dl to view information about the Youtube video and find the m4a audio track. 4.4 Sat Dec 07 jason@Yog-Sothoth 0: $ youtube-dl -F https://www.youtube.com/watch?v=JWPe9uh7FWU [youtube] JWPe9uh7FWU: Downloading webpage [youtube] JWPe9uh7FWU: Downloading video info…

Read More

How to download videos from websites in 2019.

I having problems with Xvideo service thief in 2019. I cannot get it to download any video files anymore. But youtube-dl still works. Run sudo youtube-dl -U to update it, then it still works. I downloaded a Youtube video easily with it. jason@Yog-Sothoth:~$ youtube-dl https://www.youtube.com/watch?v=82u6gWS-dP4 [youtube] 82u6gWS-dP4: Downloading webpage [youtube]…

Read More

Listen to music in the terminal and some other nice Linux tricks.

This nice command allows streaming some nice ambient drone music in the terminal with MPV. Very nice to listen to while doing other things. mpv http://ice.somafm.com/dronezone | sed -n "s/ icy-title: \(.*\)/\x1b[38;5;242m$(date +%T)\x1b[m | \1/p"mpv http://ice.somafm.com/dronezone | sed -n "s/ icy-title: \(.*\)/\x1b[38;5;242m$(date +%T)\x1b[m | \1/p" Play a Youtube video audio…

Read More

How to play a Youtube video with MPV and skip to a certain section.

Playing a Youtube video with mpv is very easy, it is also possible to skip to a certain part of the video whenever you wish. Make sure that you have the latest version of Youtube-dl first. sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/bin/youtube-dlsudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/bin/youtube-dl Then run this…

Read More

How to best encode a video for Youtube on Linux.

This simple one-liner will encode a video to a format suitable for Youtube. 4.4 Tue Sep 04 jason@Yog-Sothoth 0: $ ffmpeg -i scorcher.avi -codec:v libx264 -crf 21 -bf 2 -flags +cgop -pix_fmt yuv420p -codec:a aac -strict -2 -b:a 384k -r:a 48000 -movflags faststart scorcher.mp4 This gives good quality output whilst…

Read More

Very annoying things that happen when using WordPress.

I hate it when a plugin author updates their plugin and upon updating it, you get a PHP error that prevents you from running your website, necessitating that you log into your Cpanel to fix the problem. That is great. Why can they not test the plugin first before deploying…

Read More

How to download video from video sites easily on Ubuntu 17.04.

Downloading clips with clipgrabWatch Youtube videos with MPVDownload Youtube videos while playing them with mpv If the xvideoservicethief application does not work for you in 2019, give this one a go instead, it is working very well on multiple websites: https://securitronlinux.com/bejiitaswrath/how-to-download-videos-from-websites-in-2019/. it is called Clibgrab and does the same job…

Read More

Create a video from one image and a wav file easily.

To create a video file from a wav, just use ffmpeg. This is how I created a 4k resolution video using just ffmpeg and an image file and audio wav I got off the Internet. Put both files into the same folder and then run this command. This will add…

Read More

xVideoServiceThief. A good way to download video from websites.

If this program does not work for you in 2019, give this one a go instead, it is working very well on multiple websites: https://securitronlinux.com/bejiitaswrath/how-to-download-videos-from-websites-in-2019/. it is called Clibgrab and does the same job as xVideoServiceThief, but works with Vimeo and Youtube. As well as Dailymotion. The xVideoServiceThief application is…

Read More

Download a Youtube video to mp3 with the Linux shell.

Firstly, install youtube-dl. jason@darkstar:~/Music$ sudo apt-get install youtube-dljason@darkstar:~/Music$ sudo apt-get install youtube-dl Then run this command with the Youtube video URL. jason@darkstar:~/Music$ youtube-dl -f bestaudio -x –audio-format mp3 –prefer-ffmpeg https://www.youtube.com/watch?v=UWFm2LIYNjg [youtube] UWFm2LIYNjg: Downloading webpage [youtube] UWFm2LIYNjg: Extracting video information [youtube] UWFm2LIYNjg: Downloading DASH manifest [download] Destination: Dune (1983) OST -…

Read More