public function update(Video $video, VideoRequest $request)
 {
     $video->update($request->all());
     //$this->syncTags($video, $request->input('tag_list'));
     $this->syncInterests($video, $request->input('interest_list'));
     return redirect('videos');
 }