EVOLUTION-MANAGER
Edit File: VideoColorizer.ipynb
{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "#NOTE: This must be the first call in order to work properly!\n", "from deoldify import device\n", "from deoldify.device_id import DeviceId\n", "#choices: CPU, GPU0...GPU7\n", "device.set(device=DeviceId.GPU0)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from deoldify.visualize import *\n", "plt.style.use('dark_background')\n", "import warnings\n", "warnings.filterwarnings(\"ignore\", category=UserWarning, message=\".*?Your .*? set is empty.*?\")" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "colorizer = get_video_colorizer()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Instructions\n", "\n", "### source_url\n", "Type in a url hosting a video from YouTube, Imgur, Twitter, Reddit, Vimeo, etc. Many sources work! GIFs also work. Full list here: https://ytdl-org.github.io/youtube-dl/supportedsites.html NOTE: If you want to use your own video, you can set source_url to None and just upload the file to video/source/ in Jupyter. Just make sure that the file_name parameter matches the file you uploaded.\n", "\n", "\n", "### file_name\n", "Name this whatever sensible file name you want (minus extension)! It should actually exist in video/source if source_url=None\n", "\n", "\n", "### render_factor\n", "The default value of 21 has been carefully chosen and should work -ok- for most scenarios (but probably won't be the -best-). This determines resolution at which the color portion of the video is rendered. Lower resolution will render faster, and colors also tend to look more vibrant. Older and lower quality film in particular will generally benefit by lowering the render factor. Higher render factors are often better for higher quality videos and inconsistencies (flashy render) will generally be reduced, but the colors may get slightly washed out. \n", "\n", "\n", "### file_name_ext\n", "There's no reason to changes this.\n", "\n", "\n", "### result_path\n", "Ditto- don't change.\n", "\n", "\n", "### How to Download a Copy\n", "Simply shift+right click on the displayed video and click \"Save video as...\"!\n", "\n", "\n", "## Pro Tips\n", "1. If a video takes a long time to render and you're wondering how well the frames will actually be colorized, you can preview how well the frames will be rendered at each render_factor by using the code at the bottom. Just stop the video rendering by hitting the stop button on the cell, then run that bottom cell under \"See how well render_factor values perform on a frame here\". It's not perfect and you may still need to experiment a bit especially when it comes to figuring out how to reduce frame inconsistency. But it'll go a long way in narrowing down what actually works.\n", "\n", "\n", "## Troubleshooting\n", "The video player may wind up not showing up, in which case- make sure to wait for the Jupyter cell to complete processing first (the play button will stop spinning). Then follow these alternative download instructions\n", "\n", "1. In the menu to the left, click Home icon.\n", "2. By default, rendered video will be in /video/result/\n", "\n", "If a video you downloaded doesn't play, it's probably because the cell didn't complete processing and the video is in a half-finished state.\n", "If you get a 'CUDA out of memory' error, you probably have the render_factor too high. The max is 44 on 11GB video cards." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Colorize!!" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "#NOTE: Max is 44 with 11GB video cards. 21 is a good default\n", "render_factor=21\n", "#NOTE: Make source_url None to just read from file at ./video/source/[file_name] directly without modification\n", "source_url='https://twitter.com/silentmoviegifs/status/1116751583386034176'\n", "file_name = 'DogShy1926'\n", "file_name_ext = file_name + '.mp4'\n", "result_path = None\n", "\n", "if source_url is not None:\n", " result_path = colorizer.colorize_from_url(source_url, file_name_ext, render_factor=render_factor)\n", "else:\n", " result_path = colorizer.colorize_from_file_name(file_name_ext, render_factor=render_factor)\n", "\n", "show_video_in_notebook(result_path)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## See how well render_factor values perform on a frame here" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "for i in range(10,45,2):\n", " colorizer.vis.plot_transformed_image('video/bwframes/' + file_name + '/00001.jpg', render_factor=i, display_render_factor=True, figsize=(8,8))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.6" }, "toc": { "colors": { "hover_highlight": "#DAA520", "navigate_num": "#000000", "navigate_text": "#333333", "running_highlight": "#FF0000", "selected_highlight": "#FFD700", "sidebar_border": "#EEEEEE", "wrapper_background": "#FFFFFF" }, "moveMenuLeft": true, "nav_menu": { "height": "67px", "width": "252px" }, "navigate_menu": true, "number_sections": true, "sideBar": true, "threshold": 4, "toc_cell": false, "toc_section_display": "block", "toc_window_display": false, "widenNotebook": false } }, "nbformat": 4, "nbformat_minor": 4 }