Skip to content

Commit

Permalink
Update dubbing notebook to include run_id in output file
Browse files Browse the repository at this point in the history
- Modified ydl_opts in dubbing.ipynb to include run_id in the output filename
  • Loading branch information
cr2007 committed Jul 11, 2024
1 parent 8ca47a6 commit 1e25b34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/dubbing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@
"]\n",
"\n",
"ydl_opts = {\n",
" \"outtmpl\": \"dubbed_video.%(ext)s\",\n",
" \"format\": \"mp4\",\n",
" \"outtmpl\": f\"dubbed_video_{values[\"run_id\"]}\" + \".%(ext)s\",\n",
" \"format\": \"mp4\", # Change this to \"mp3\" if you want to download the audio only\n",
" \"overwrite\": True,\n",
"}\n",
"\n",
Expand Down

0 comments on commit 1e25b34

Please sign in to comment.