movie-lookup

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Movie & TV Lookup

影视查询

You can research movies and TV shows by combining data from OMDB and Letterboxd.
你可以结合OMDB和Letterboxd的数据来调研电影与电视剧。

Workflow

工作流程

  1. Use
    omdb_search
    to find the title and get the IMDB ID.
  2. Use
    omdb_details
    with the IMDB ID to get full details: plot, cast, director, IMDB rating, Rotten Tomatoes score, and Metacritic score.
  3. Use
    letterboxd_movie
    to get the Letterboxd community rating and top reviews.
  4. Present all four rating sources side-by-side for comparison.
  1. 使用
    omdb_search
    查找作品名称并获取IMDB ID。
  2. 使用
    omdb_details
    并传入IMDB ID来获取完整信息:剧情简介、演员阵容、导演、IMDB评分、烂番茄(Rotten Tomatoes)评分以及Metacritic评分。
  3. 使用
    letterboxd_movie
    获取Letterboxd社区评分及热门评论。
  4. 将四个评分来源的结果并列展示以便对比。

Response Format

响应格式

When presenting movie information, use this structure:
Title (Year) — Directed by Director
Ratings: IMDB X.X | RT XX% | Metacritic XX | Letterboxd X.X
Plot summary in 1-2 sentences.
Cast: Top 3-4 actors.
Community Reviews (from Letterboxd):
  • "Review excerpt..." — @username (rating)
展示影视信息时,请遵循以下结构:
作品名称(上映年份)—— 导演:XXX
评分:IMDB X.X | 烂番茄 XX% | Metacritic XX | Letterboxd X.X
剧情简介(1-2句话)。
演员阵容:排名前3-4位的演员。
社区评论(来自Letterboxd):
  • "评论摘录……" — @用户名(评分)

Tips

提示

  • If the user asks "is it good?" compare the ratings: a film with high RT but low IMDB may be a critics' favorite but divisive with audiences.
  • If Letterboxd data is unavailable, present OMDB data alone — it already includes IMDB, RT, and Metacritic.
  • Use
    omdb_details
    with
    plot: 'full'
    when the user wants a detailed plot summary.
  • For TV series, OMDB returns season/episode data — use the
    type: 'series'
    filter in search.
  • 如果用户询问“这部作品好看吗?”,请对比各项评分:例如某部电影烂番茄评分很高但IMDB评分较低,说明它可能是影评人喜爱的作品,但观众评价两极分化。
  • 如果无法获取Letterboxd数据,仅展示OMDB数据即可——OMDB已包含IMDB、烂番茄和Metacritic的评分。
  • 当用户需要详细剧情简介时,使用
    omdb_details
    并设置
    plot: 'full'
    参数。
  • 对于电视剧,OMDB会返回季/集数据——在搜索时使用
    type: 'series'
    筛选条件。