mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
fixed extremux x264 using value of ABR for VBR
This commit is contained in:
parent
c0a7f1610a
commit
c7d19619db
@ -153,7 +153,10 @@ carel
|
|||||||
for helping to find a way to cleanly shutdown externremux with mencoder
|
for helping to find a way to cleanly shutdown externremux with mencoder
|
||||||
|
|
||||||
wolfi.m
|
wolfi.m
|
||||||
for reporting a typo in externermux quality parameter value
|
for reporting a typo in externremux quality parameter value
|
||||||
|
|
||||||
Norman Thiel
|
Norman Thiel
|
||||||
for reporting a wrong URL path in m3u playlists
|
for reporting a wrong URL path in m3u playlists
|
||||||
|
|
||||||
|
vel_tins
|
||||||
|
for reporting that externremux x264 uses value of ABR for VBR
|
||||||
|
2
HISTORY
2
HISTORY
@ -1,6 +1,8 @@
|
|||||||
VDR Plugin 'streamdev' Revision History
|
VDR Plugin 'streamdev' Revision History
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
|
- fixed extremux x264 using value of ABR for VBR (thanks to vel_tins@vdrportal)
|
||||||
|
|
||||||
2010-07-20: Version 0.5.0b
|
2010-07-20: Version 0.5.0b
|
||||||
|
|
||||||
- fixed wrong URL path in m3u playlists (reported by Norman Thiel)
|
- fixed wrong URL path in m3u playlists (reported by Norman Thiel)
|
||||||
|
@ -101,7 +101,7 @@ function remux_mencoder
|
|||||||
X264OPTS=(
|
X264OPTS=(
|
||||||
${VOPTS}
|
${VOPTS}
|
||||||
$(hasOpt "$VOPTS" threads || echo "threads=auto")
|
$(hasOpt "$VOPTS" threads || echo "threads=auto")
|
||||||
${VBR:+bitrate=$ABR}
|
${VBR:+bitrate=$VBR}
|
||||||
)
|
)
|
||||||
[ ${#X264OPTS[*]} -gt 0 ] && VOPTS=$(IFS=:; echo -x264encopts "${X264OPTS[*]}")
|
[ ${#X264OPTS[*]} -gt 0 ] && VOPTS=$(IFS=:; echo -x264encopts "${X264OPTS[*]}")
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user