Metadata-Version: 2.1
Name: bbb-dl
Version: 0.9.8.9
Summary: Big Blue Button Downloader that downloads a BBB lesson as MP4 video
Home-page: https://github.com/C0D3D3V/bbb-dl
Author: C0D3D3V
License: GPL-2.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Education
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS

# Big Blue Button (BBB) Downloader

Downloads a BBB lesson as MP4 video, including presentation, audio, webcam and screenshare.

> Nevertheless, I would definitely recommend you to record a BBB meeting with [OBS](https://obsproject.com/de), it's more efficient and you have more control over the outcome.

### Setup
1. Install [Python](https://www.python.org/) >=3.7
2. Install [ffmpeg](https://github.com/C0D3D3V/Moodle-Downloader-2/wiki/Installing-ffmpeg)
3. To generate the annotated images (with the `--add-annotations` option), you need to have at least a [Chrome browser](https://www.google.com/chrome/) installed (or chromium).  
  - To speed up annotation you can optionally install `cairosvg`. [Cairosvg](https://cairosvg.org/documentation/#installation) is 3 times faster than Chrome. For this do the following:
    - On windows the easiest way to install `cairo` is to install [GTK+](https://github.com/tschoonj/GTK-for-Windows-Runtime-Environment-Installer/releases), just download and install [the latest installer from here](https://github.com/tschoonj/GTK-for-Windows-Runtime-Environment-Installer/releases)
    - On linux and macOS the dependencies `libffi` and `cairo` may already be installed, if not use your package manager to install them.


4. **[Windows only]** You may need to install [Visual C++ compiler for Python](https://wiki.python.org/moin/WindowsCompilers#Microsoft_Visual_C.2B-.2B-_14.2_standalone:_Build_Tools_for_Visual_Studio_2019_.28x86.2C_x64.2C_ARM.2C_ARM64.29) to build all the dependencies successfully (you can also do this step if step 5 fails): 
  - Download and Install Microsoft [Build Tools for Visual Studio 2019 from here](https://aka.ms/vs/16/release/vs_buildtools.exe)
  - In Build tools, install C++ build tools and ensure the latest versions of MSVCv142 - VS 2019 C++ x64/x86 build tools and Windows 10 SDK are checked.
  - In some very edge cases you may also need [Visual C++ 14.0 Redistrubution Packages](https://aka.ms/vs/17/release/vc_redist.x64.exe)

5. Run as administrator: `pip install --user bbb-dl`
    > On Windows, you must start a CMD or Powershell as administrator to run commands as an administrator

    You can also install `bbb-dl` as a normal user, but then you have to care about the dependencies yourself.

6. Run `bbb-dl --help` to see all options


If you ever need to update `bbb-dl` run as administrator: `pip install -U bbb-dl`

### Usage

**Temporary files are default stored in the application data folder** 

- The `--backup` option uses the same location
- You can change this location with the `--workingdir` option
- On Windows, the folder is located in `%localappdata%\bbb-dl`
- On Linux / MacOS, the folder is located in `~/.local/share/bbb-dl/`

**What should I do if I exit the program too early**

- If it is an error, bbb-dl should be able to restore the last state on its own, just call the command you used before
- However, sometimes bbb-dl will ask you to delete a specific file.
- If it is because you canceled bbb-dl, or the same error occurs repeatedly, then you should first go to the temporary directory and remove the file that was created last. Usually, only one file is corrupted, but if more than one file is corrupted you can also remove the whole temporary folder of the video and start over. 
- For images, you can tell if they are faulty if you see unexpected black areas in the thumbnail or the image. 


Example call: 

`bbb-dl --add-webcam --add-annotations https://your.bbb.org/playback/presentation/2.3/playback.html?meetingId=5d9100very_long_id70001800032c-160100033965 `


```
usage: bbb-dl [-h] [-aw] [-aa] [-ac] [-bk] [-kt] [-v] [-vc] [--chrome-executable CHROME_EXECUTABLE] [--ffmpeg-location FFMPEG_LOCATION] [-ncc] [--version] [--encoder ENCODER] [--audiocodec AUDIOCODEC]
              [-f FILENAME] [-od OUTPUTDIR] [-wd WORKINGDIR]
              URL

Big Blue Button Downloader that downloads a BBB lesson as MP4 video

positional arguments:
  URL                   URL of a BBB lesson

options:
  -h, --help            show this help message and exit
  -aw, --add-webcam     add the webcam video as an overlay to the final video
  -aa, --add-annotations
                        add the annotations of the professor to the final video
  -ac, --add-cursor     add the cursor of the professor to the final video [Experimental, very slow, untested]
  -bk, --backup         downloads all the content from the server and then stops. After using this option, you can run bbb-dl again to create the video based on the saved files
  -kt, --keep-tmp-files
                        keep the temporary files after finish. In case of an error bbb-dl will reuse the already generated files
  -v, --verbose         print more verbose debug informations
  -vc, --verbose-chrome
                        print more verbose debug informations of the chrome browser that is used to generate screenshots
  --chrome-executable CHROME_EXECUTABLE
                        Optional path to your installed Chrome executable (Use it if the path is not detected automatically)
  --ffmpeg-location FFMPEG_LOCATION
                        Optional path to the directory in that your installed ffmpeg executable is located (Use it if the path is not detected automatically)
  -ncc, --no-check-certificate
                        Suppress HTTPS certificate validation
  --version             Print program version and exit
  --encoder ENCODER     Optional encoder to pass to ffmpeg (default libx264)
  --audiocodec AUDIOCODEC
                        Optional audiocodec to pass to ffmpeg (default copy the codec from the original source)
  -f FILENAME, --filename FILENAME
                        Optional output filename
  -od OUTPUTDIR, --outputdir OUTPUTDIR
                        Optional output directory for final video
  -wd WORKINGDIR, --workingdir WORKINGDIR
                        Optional output directory for all temporary directories/files
```

### How can I speed up the rendering process?

FFmpeg can use different hardware accelerators for encoding videos. You can find more information about this here: https://trac.ffmpeg.org/wiki/HWAccelIntro

To use such hardware for encoding you may need to install drivers as indicated on the website and then set the `--encoder` option to the appropriate encoder. 

For example, if you have an Nvidia graphics card installed in a computer, you can use it with the [NVENC](https://trac.ffmpeg.org/wiki/HWAccelIntro#CUDANVENCNVDEC) encoder. For this you simply set the option `--encoder h264_nvenc`. You can see on the [Nvidia website which graphics cards support this option](https://developer.nvidia.com/video-encode-and-decode-gpu-support-matrix-new). If your graphics card also supports H.265 (HEVC) you can set the option `--encoder hevc_nvenc` instead, which might be even faster (you have to test this yourself).


### License
This project is licensed under the terms of the *GNU General Public License v2.0*. For further information, please look [here](http://choosealicense.com/licenses/gpl-2.0/) or [here<sup>(DE)</sup>](http://www.gnu.org/licenses/old-licenses/gpl-2.0.de.html).

This project is based on the work of [CreateWebinar.com](https://github.com/createwebinar/bbb-download), [Stefan Wallentowitz](https://github.com/wallento/bbb-scrape) and [Olivier Berger](https://github.com/ytdl-org/youtube-dl/pull/25092).
Parts of this code have already been published under MIT license and public domain. These parts are re-released in this project under the GPL-2.0 License.    
