|
24 | 24 | "# os.system('apt-get install -y xvfb')\n",
|
25 | 25 | "# os.system('wget https://raw.githubusercontent.com/yandexdataschool/Practical_DL/fall18/xvfb -O ../xvfb')\n",
|
26 | 26 | "# os.system('apt-get install -y python-opengl ffmpeg')\n",
|
27 |
| - "# os.system('pip install pyglet==1.2.4')\n", |
28 | 27 | "\n",
|
29 | 28 | "# XVFB will be launched if you run on a server\n",
|
30 | 29 | "import os\n",
|
|
380 | 379 | "metadata": {},
|
381 | 380 | "outputs": [],
|
382 | 381 | "source": [
|
383 |
| - "# show video\n", |
| 382 | + "# Show video. This may not work in some setups. If it doesn't\n", |
| 383 | + "# work for you, you can download the videos and view them locally.\n", |
| 384 | + "\n", |
| 385 | + "import sys\n", |
| 386 | + "from pathlib import Path\n", |
| 387 | + "from base64 import b64encode\n", |
384 | 388 | "from IPython.display import HTML\n",
|
385 |
| - "import os\n", |
386 | 389 | "\n",
|
387 |
| - "video_names = list(\n", |
388 |
| - " filter(lambda s: s.endswith(\".mp4\"), os.listdir(\"./videos/\")))\n", |
| 390 | + "video_paths = sorted([s for s in Path('videos').iterdir() if s.suffix == '.mp4'])\n", |
| 391 | + "video_path = video_paths[-3] # You can also try other indices\n", |
| 392 | + "\n", |
| 393 | + "if 'google.colab' in sys.modules:\n", |
| 394 | + " # https://stackoverflow.com/a/57378660/1214547\n", |
| 395 | + " with video_path.open('rb') as fp:\n", |
| 396 | + " mp4 = fp.read()\n", |
| 397 | + " data_url = 'data:video/mp4;base64,' + b64encode(mp4).decode()\n", |
| 398 | + "else:\n", |
| 399 | + " data_url = str(video_path)\n", |
389 | 400 | "\n",
|
390 | 401 | "HTML(\"\"\"\n",
|
391 | 402 | "<video width=\"640\" height=\"480\" controls>\n",
|
392 | 403 | " <source src=\"{}\" type=\"video/mp4\">\n",
|
393 | 404 | "</video>\n",
|
394 |
| - "\"\"\".format(\"./videos/\"+video_names[-1])) # this may or may not be _last_ video. Try other indices" |
| 405 | + "\"\"\".format(data_url))" |
395 | 406 | ]
|
396 | 407 | },
|
397 | 408 | {
|
|
405 | 416 | "metadata": {
|
406 | 417 | "anaconda-cloud": {},
|
407 | 418 | "kernelspec": {
|
408 |
| - "display_name": "Py3 research env", |
| 419 | + "display_name": "Python 3", |
409 | 420 | "language": "python",
|
410 |
| - "name": "py3_research" |
| 421 | + "name": "python3" |
411 | 422 | },
|
412 | 423 | "language_info": {
|
413 | 424 | "codemirror_mode": {
|
|
419 | 430 | "name": "python",
|
420 | 431 | "nbconvert_exporter": "python",
|
421 | 432 | "pygments_lexer": "ipython3",
|
422 |
| - "version": "3.6.7" |
| 433 | + "version": "3.7.3" |
423 | 434 | }
|
424 | 435 | },
|
425 | 436 | "nbformat": 4,
|
|
0 commit comments