I am currently trying to insert/integrate a video into my word document, but i can't find out how to do that. here is a piece of my non working code:
$phpWord = new \PhpOffice\PhpWord\PhpWord();
$section = $phpWord->addSection();
$html = "<video width='550' height='500' controls><source src='video.mp4' type='video/mp4'></video>";
\PhpOffice\PhpWord\Shared\Html::addHtml($section, $html);
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007');
$objWriter->save('doc.docx');