
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
@kv8n2oryk/tizeniptv
Advanced tools
tizeniptv is an app bring https://iptvwebv2.vercel.app/ on your Tizen (Samsung) TVs.
An npm module that provides access to IPTV channels from https://iptvwebv2.vercel.app/ for Tizen (Samsung) TVs.
npm install @kv8n2oryk/tizeniptv
const TizenIPTV = require('@kv8n2oryk/tizeniptv');
async function main() {
// Create IPTV instance
const iptv = new TizenIPTV({
baseURL: 'https://iptvwebv2.vercel.app', // optional, default
port: 8085 // optional, default
});
try {
// Initialize the service
await iptv.init();
console.log('IPTV service started on port', iptv.port);
// Get available channels
const channels = await iptv.getChannels();
console.log('Available channels:', channels);
// Play a channel
if (channels.length > 0) {
const channelUrl = iptv.getLocalPlaybackUrl(channels[0].url);
console.log('Playback URL:', channelUrl);
// Open channelUrl in browser or media player
}
} catch (error) {
console.error('Error:', error.message);
} finally {
// Stop the service
iptv.stop();
}
}
main();
new TizenIPTV(options)Creates a new TizenIPTV instance.
Options:
baseURL (string): Base URL of the IPTV website (default: 'https://iptvwebv2.vercel.app')port (number): Port for the local server (default: 8085)async init()Initializes the IPTV service and starts the local server.
async getChannels()Fetches available IPTV channels from the website.
Returns: Array of channel objects with name and url properties.
getLocalPlaybackUrl(channelUrl)Generates a local playback URL for a channel.
Parameters:
channelUrl (string): The HLS URL of the channelReturns: Local URL that can be used to play the channel
playChannel(channelUrl)Generates a direct playback URL for a channel on the remote website.
Parameters:
channelUrl (string): The HLS URL of the channelReturns: Remote URL for direct playback
stop()Stops the local server.
When the service is running, the following endpoints are available:
GET /play?url=<channel_url> - HLS video player for the specified channelGET /channels - JSON API returning available channels# Install dependencies
npm install
# Build the module
npm run build
# Run tests
node test.js
GPL-3.0-only
FAQs
tizeniptv is an app bring https://iptvwebv2.vercel.app/ on your Tizen (Samsung) TVs.
We found that @kv8n2oryk/tizeniptv demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.