/** * **x265** - H.265/HEVC encoder * * @domain `videolan.org/x265` * @programs `x265` * @version `4.1.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install videolan.org/x265` * @homepage https://bitbucket.org/multicoreware/x265_git * @buildDependencies `cmake.org`, `nasm.us` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.videolanorgx265 * console.log(pkg.name) // "x265" * console.log(pkg.description) // "H.265/HEVC encoder" * console.log(pkg.programs) // ["x265"] * console.log(pkg.versions[0]) // "4.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/videolan-org/x265.md * @see https://ts-pkgx.netlify.app/usage */ export declare const videolanorgx265Package: { /** * The display name of this package. */ name: 'x265'; /** * The canonical domain name for this package. */ domain: 'videolan.org/x265'; /** * Brief description of what this package does. */ description: 'H.265/HEVC encoder'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/videolan.org/x265/package.yml'; homepageUrl: 'https://bitbucket.org/multicoreware/x265_git'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install videolan.org/x265'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +videolan.org/x265 -- $SHELL -i'; launchpadInstallCommand: 'launchpad install videolan.org/x265'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['x265']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org', 'nasm.us']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.1.0', '3.2.1']; aliases: readonly [] }; export type Videolanorgx265Package = typeof videolanorgx265Package