1.2.0 • Published 6 months ago

nnfr v1.2.0

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

No Name FR

  • A Movie streaming website

What is this?

  • This package/lib fetches valid movie/show/tv/anime embed links from multiple sources for you

How to use? 🤔

  • For Faster results cutdown the number of sources
  • Use imdb id if possible, it would be specific + Cinemetajs provider does not have every movie/show/anime/tv info
    const { getURL } = require("nnfr")
    // Default Sources 
    let sources = ["superembed", "vidsrc.me", "vidsrc.to", "2embed", "superembedvip", "gomo.to"]
    getURL("tt15398776" || "Oppenheimer", {sources: sources, type: "movie" /*Not Necessary maybe needed if cinemeta api does not have the metadata*/}).then(result =>{

        console.log(result)

        /*
        Expected Output
        {
        metadata: {
            _id: '6234741a64ec43ef981b3d61',
            imdb_id: 'tt15398776',
            name: 'Oppenheimer',
            type: 'movie',
            year: '2023'
        },
        streams: [
            {
            source: 'superembed',
            url: 'https://multiembed.mov/?video_id=tt15398776'
            },
            {
            source: 'superembedvip',
            url: 'https://multiembed.mov/directstream.php?video_id=tt15398776'
            },
            {
            source: 'vidsrc.me',
            url: 'https://vidsrc.me/embed/movie?imdb=tt15398776'
            },
            {
            source: '2embed',
            url: 'https://www.2embed.cc/embed/tt15398776' 
            },
            {
            source: 'vidsrc.to',
            url: 'https://vidsrc.to/embed/movie/tt15398776'
            },
            { 
            source: 'gomo.to', 
            url: 'https://gomo.to/movie/tt15398776' 
            }
        ]
        }
    */

    })
1.2.0

6 months ago

1.0.0

6 months ago