|
@@ 341-342 (lines=2) @@
|
| 338 |
|
$html .= '>'; |
| 339 |
|
if ( ! isset( $this->options['freedom'] ) || $this->options['freedom'] === false ) { |
| 340 |
|
$mp4 = $this->video->videos->mp4->url; |
| 341 |
|
if ( ! empty( $mp4 ) ) { |
| 342 |
|
$html .= '<source src="' . esc_url( $mp4 ) . '" type="video/mp4; codecs="' . esc_attr( $this->video->videos->mp4->codecs ) . '"" />'; |
| 343 |
|
} |
| 344 |
|
unset( $mp4 ); |
| 345 |
|
} |
|
@@ 349-350 (lines=2) @@
|
| 346 |
|
|
| 347 |
|
if ( isset( $this->video->videos->ogv ) ) { |
| 348 |
|
$ogg = $this->video->videos->ogv->url; |
| 349 |
|
if ( ! empty( $ogg ) ) { |
| 350 |
|
$html .= '<source src="' . esc_url( $ogg ) . '" type="video/ogg; codecs="' . esc_attr( $this->video->videos->ogv->codecs ) . '"" />'; |
| 351 |
|
} |
| 352 |
|
|
| 353 |
|
unset( $ogg ); |