UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.46 kB
/** * **rtmpdump** - Tool for downloading RTMP streaming media * * @domain `rtmpdump.mplayerhq.hu` * @programs `rtmpdump`, `rtmpgw`, `rtmpsrv`, `rtmpsuck` * @version `2.3.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install +rtmpdump.mplayerhq.hu -- $SHELL -i` * @aliases `rtmpdump` * @dependencies `openssl.org^1.1`, `zlib.net` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.rtmpdump * // Or access via domain * const samePkg = pantry.rtmpdumpmplayerhqhu * console.log(pkg === samePkg) // true * console.log(pkg.name) // "rtmpdump.mplayerhq.hu" * console.log(pkg.description) // "Tool for downloading RTMP streaming media" * console.log(pkg.programs) // ["rtmpdump", "rtmpgw", ...] * console.log(pkg.versions[0]) // "2.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rtmpdump-mplayerhq-hu.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rtmpdumpPackage: { /** * The display name of this package. */ name: 'rtmpdump.mplayerhq.hu'; /** * The canonical domain name for this package. */ domain: 'rtmpdump.mplayerhq.hu'; /** * Brief description of what this package does. */ description: 'Tool for downloading RTMP streaming media'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rtmpdump.mplayerhq.hu/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +rtmpdump.mplayerhq.hu -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rtmpdump', 'rtmpgw', 'rtmpsrv', 'rtmpsuck']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1', 'zlib.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.3.0', '2.3.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['rtmpdump'] }; export type RtmpdumpPackage = typeof rtmpdumpPackage