If you are in search of a solution to stream your downloaded movie content to an Apple TV on your home network, you may have hit a barrier that many Linux users hit, which is that Apple hasn’t made it easy to tap into their AirPlay technology.
There is a way however, to take your .mp4 video files and stream them to your Apple TV, thanks to a few nifty Ruby programs and the libraries used by the Airplay protocol.
Assuming you are using Ubuntu (or any Ubuntu based distro) you will need to install the following dependencies required to communicate with your Apple TV device.
1. Open a terminal window and install the package “libavahi-compat-libdnssd-dev” by typing the following command.
$ sudo apt-get install libavahi-compat-libdnssd-dev
2. After that installation is complete make sure you have at least Ruby 2.0 installed on your system. Inside of your terminal type the following to ensure that it is indeed installed.
$ ruby --version
You will receive an output that should look something like this:
ruby 2.1.4p265 (2014-10-27 revision 48166) [x86_64-linux]
If 1.9.x is installed, you will want to upgrade your version of Ruby to 2.x by adding the Ruby PPA to your apt sources list. You would do so by typing the following commands in your terminal.
$ sudo apt-add-repository ppa:brightbox/ruby-ng
When prompted hit ENTER. Next run,
$ sudo apt-get update $ sudo apt-get install ruby2.0-dev
3. Now that Ruby is up to date, we will need to install two “gems” that will allow us to send our video to our Apple TV. The gems we will install are airplayer and airstream.
To install we will need to run the following:
$ sudo gem install airplayer $ sudo gem install airstream
Note: This will automatically install the dependencies required to run these programs as well as the programs themselves.
4. We have the software we need to stream our video, but we need to know where on our network our Apple TV is (where to send our video). To do this we run,
$ airplayer devices
This command will output something that will resemble,
0: Apple TV (Resolution: 1280x720, Version: 200.54, IP: 192.168.0.6:7000)
Note: Take note of that IP address (minus the ‘:7000’) portion.
5. Now go the path, where your favorite movies stored and then in a terminal window run the following command to stream the movie to your Apple TV.
$ cd /path/where/video/is/ $ airstream -o IP.OF.APPLE.DEVICE ./nameofvideo.mp4
6. Now check out your TV and viola! You are streaming your video to your Apple TV.
Conclusion
Now, some knowledgeable on this subject may airplayer alone is sufficient to handle playback of video on Apple TV. It has been my experience that the airstream gem does this task more reliably. I simply use the airplayer gem to discover the IP address of the Apple TV.
If you have videos that are not in mp4 format and are .mkv, .avi, .mov, they will need to be converted in order for playback to work via airstream.
Feel free to post your questions, and I hope this will be a painless process to accessing what is rightfully yours.
When the video is playing, in Terminal the progress bar is very incorrect – when the movie is 90% done it only shows 9%, so it is a ‘zero’ out – does anybody know how to fix this?
Not sure, but since I started a new default size terminal it seems to work for video. too.
Great stuff, I had some problems until I installed ruby, ruby-dev, make, automake, gcc, g++ – not sure if all were strictly needed. What was needed on top was “apt-get install libavahi-compat-libdnssd-dev“.
I managed to get mp3 playing via my Apple TV nicely. MP4 video shows picture and sound for a second or two and then crashes with an error. Anyone else got this – and maybe was able to fix it?
Anyone having problems installing Airstream may want to follow this link ( https://github.com/unused/airstream )to the Airstream Github page. Scroll down to “troubleshooting” on that page and follow the promts.
Though I had Ruby installed, I did not have Ruby Dev installed. I simply solved this by using the command
sudo apt-get install ruby-dev . After I had this installed/working, I entered this command sudo apt-get install libavahi-compat-libdnssd-dev and then I was easilly able to install both gems, for airplayer and airstream by using these commands sudo gem install airplayer and sudo gem install airstream .
Got it to work. But for some reason, it often takes many attempts to get it to stream to the ATV. Sometimes the ATV complains “an error blah blah, the content cannot be streamed” and sometimes airstream stalls and nothing happens. Wonder why. Any clues ?
In my experience files smaller than 1GB will run, but files larger than 1GB will give that error. That’s what I’ve deduced, but you could be experiencing something different. I just shrink my video sizes a bit and everything plays A-OK.
Can’t updare the Ruby, It shows this error when I try to run “sudo apt-get install ruby2.0-dev”
E: Unable to locate package ruby2.0
E: Couldn’t find any package by regex ‘ruby2.0’
I’ve used these alternative ways to install ruby 2.0:
http://stackoverflow.com/questions/16222738/how-do-i-install-ruby-2-0-0-correctly-on-ubuntu-12-04
https://www.brightbox.com/blog/2015/01/05/ruby-2-2-0-packages-for-ubuntu/
Still shows this when I try to run “sudo gem install airplayer”:
Unable to resolve dependencies: airplayer requires reel (= 0.4.0), reel-rack (= 0.1.0), celluloid (= 0.15.2)
Ive ran these commands:
sudo gem install reel
sudo gem install reel-rack
sudo gem install celluloid
but still the dependency is not satisfied
@Marcio,
May I know on which Linux distribution you are trying? It seems that you’re trying on little older distribution, try to upgrade your distro and give a try again.
@Marcio,
I’ve tried same “sudo apt-get install ruby2.0-dev” command in my Linux Mint 17.1, the command working fine and installed ruby..
Hi!
Just finish to install, there is no ruby2.2-dev version so we have to stay il ruby2.1!
I works fine but not for mkv files, do you have a solution to play directly those files?
Hello
I appreciate your help regarding these settings on linux but I have a question;
Is it possible to send music from spotify installed on linux to an airplay device like freebox player ?
Thanks for your help y advance