Given an IMDB movie id, how do I programmatically get its poster image?

前端 未结 17 792
礼貌的吻别
礼貌的吻别 2020-12-08 03:17

movie id tt0438097 can be found at http://www.imdb.com/title/tt0438097/

What\'s the url for its poster image?

17条回答
  •  伪装坚强ぢ
    2020-12-08 03:54

    You can use imdb-cli tool to download movie's poster, e.g.

    omdbtool -t "Ice Age: The Meltdown" | wget `sed -n '/^poster/{n;p;}'`
    

提交回复
热议问题