




Code: Select all
--tvmode=flashhd,flashvhigh,flashhigh,flashnormalCode: Select all
./get_iplayer --get 372 --force ----tvmode=flashhd,flashvhigh,flashhigh,flashnormal -o /media/usbstickCode: Select all
pi@raspberrypi:~$ sudo apt-get update
Code: Select all
pi@raspberrypi:~$ sudo apt-get install get-iplayer ffmpeg git
Code: Select all
pi@raspberrypi:~$ mkdir get_iplayer_source
pi@raspberrypi:~$ cd get_iplayer_source
pi@raspberrypi:~/get_iplayer_source$
Code: Select all
pi@raspberrypi:~/get_iplayer_source$ git clone git://git.infradead.org/get_iplayer.git
Code: Select all
pi@raspberrypi:~/get_iplayer_source$ sudo mv /usr/bin/get-iplayer /usr/bin/get-iplayer_1_78
pi@raspberrypi:~/get_iplayer_source$ sudo cp get_iplayer/get_iplayer /usr/bin/
Code: Select all
get-iplayer --subtitles --thumb --thumbsize 6 --metadata generic -s --tvmode flashhd,flashvhigh --radiomode flashaachigh,flashaacstd --file-prefix="<nameshort>-<senum>-<episodeshort>" --get 130


Code: Select all
gzip get_iplayer.1
sudo cp get_iplayer.1.gz /usr/share/man/man1/

Using OpenELEC, Omxplayer or XBMC? Or something else? H-264 MP4s should work fine on the Pi, but other formats may be problematic.robwriter wrote:Not sure if this is obvious - but I found the video files that GetIplayer produces on my desktop play fine on the Pi.
I've tried omxplayer with some files that was previously downloaded as "flashhd" and "flashvhigh" and they played nice without hickups. I don't have an audio receiver that can take HDMI but video is playing nice on the screen and the audio is also playing on the analog jack on the RasPi. The quality of the analog output is not good but it works and it is certainly usable.alexeames wrote:Using OpenELEC, Omxplayer or XBMC? Or something else? H-264 MP4s should work fine on the Pi, but other formats may be problematic.robwriter wrote:Not sure if this is obvious - but I found the video files that GetIplayer produces on my desktop play fine on the Pi.

I think they are streamed as .flv wrapped round H-264 MP4, but get_iplayer uses FFMPEG after the download to strip away the flash wrapper (not sure I've got the terms right, but I think you get the idea.)robwriter wrote:In RaspMC - looking at the files I see they're H-264 MP4's so obviously they're fine, I had it my head they were a different format.



Excellent - thanks - that saves some typingxxxstarmanxxx wrote:Heres a tip for getting the best available download via get_iplayer.
Rather than probing the schedule number to find out what formats are avaiable for the programme you need just use the following command:
--modes=best
This will download 720p if available for the programme or flashhd if not
Example:
get_iplayer --get 200 --modes=best
Justin