1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00

- Add X265 knob (default off) for X.265 (HEVC) encoding support using

multimedia/x265.

  Example usage:  (-c:a libfdk_aac needs FDK_AAC knob too)

	ffmpeg -i $inputvideofile -c:a libfdk_aac -b:a 64k -c:v libx265 -x265-params crf=31 $outputfile.mkv

  This can now be played back by at least ffplay (needs SDL knob),
  vlc, mplayer, mpv, xine.  (and gives a nice reduction in file size.)

No objection from:	multimedia@ list
This commit is contained in:
Juergen Lock 2014-10-19 12:26:21 +00:00
parent 2d03fdc568
commit d9e7e2cb35
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=371179
2 changed files with 6 additions and 1 deletions

View File

@ -482,6 +482,7 @@ WMF_DESC?= Windows Metafile image format support
WXGTK_DESC?= wxGTK GUI toolkit support
X11_DESC?= X11 (graphics) support
X264_DESC?= H.264 video codec support via x264
X265_DESC?= H.265 video codec support via x265
XALAN_DESC?= Xalan XSLT processor support
XCURSOR_DESC?= Cursor themes support
XERCES_DESC?= XML parser support via Xerces

View File

@ -29,7 +29,7 @@ OPTIONS_DEFINE= AACPLUS ALSA AMR_NB AMR_WB ASS CDIO CELT DEBUG DOCS FAAC \
JACK LAME LIBBLURAY LIBV4L MODPLUG OPENAL OPENCV OPENJPEG OPENSSL \
OPTIMIZED_CFLAGS OPUS PULSEAUDIO RTMP SCHROEDINGER SDL SPEEX \
THEORA VAAPI VDPAU VO_AACENC VO_AMRWBENC VORBIS VPX \
X11GRAB X264 XVID
X11GRAB X264 X265 XVID
OPTIONS_DEFAULT= FFSERVER FONTCONFIG FREETYPE FREI0R GNUTLS ICONV \
OPENCV SCHROEDINGER THEORA VORBIS VPX X264 XVID
@ -196,6 +196,10 @@ VPX_CONFIGURE_ENABLE= libvpx
X264_LIB_DEPENDS= libx264.so:${PORTSDIR}/multimedia/x264
X264_CONFIGURE_ENABLE= libx264
# x265
X265_LIB_DEPENDS= libx265.so:${PORTSDIR}/multimedia/x265
X265_CONFIGURE_ENABLE= libx265
# xvid
XVID_LIB_DEPENDS= libxvidcore.so:${PORTSDIR}/multimedia/xvid
XVID_CONFIGURE_ENABLE= libxvid