Skip to main content

No project description provided

Project description

pytest

nbmediasplit

nbmediasplit is a script to extract base64 encoded image and audio PCM embedded in .ipynb file and save them into specified directories. nbmediasplit also converts ipynb file to a new one which refers to stored image and audio files.

install

pip install nbmediasplit

usage

extract image files from ipynb

nbmediasplit input.ipynb -i image_out_dir

or

nbmediasplit input.ipynb --imgdir image_out_dir

The above command extract image files from input.ipynb and store them to image_out_dir. -i or --imgdir specifies a directory to store image files. Filenames of the stored image are numbered in sequential order(0.png, ...).

extract audio files from ipynb

nbmediasplit input.ipynb -w wav_out_dir

or

nbmediasplit input.ipynb --wavdir wav_out_dir

The above command extract audio files from input.ipynb and store them to wav_out_dir. -w or --wavdir specifies a directory to store audio files. Filenames of the stored audio are numbered in sequential order(0.wav, ...).

extract image and audio files from ipynb

nbmediasplit input.ipynb -i image_out_dir -w wav_out_dir

or

nbmediasplit input.ipynb --imgdir image_out_dir --wavdir wav_out_dir

The above command does below things.

  • extract image files from input.ipynb and store them to image_out_dir
  • extract audio files from input.ipynb and store them to wav_out_dir.

-i or --imgdir specifies a directory to store image files. -w or --wavdir specifies a directory to store audio files. Filenames of the stored image are numbered in sequential order(0.png, ...). Filenames of the stored audio are numbered in sequential order(0.wav, ...).

extract image and audio files from ipynb and convert ipynb

If you use -o or --output option like below command, you can convert input.ipynb to new ipynb file which refers to stored image files and audio files directly.

nbmediasplit input.ipynb -i image_out_dir -w wav_out_dir -o converted.ipynb

or

nbmediasplit input.ipynb --imgdir image_out_dir --wavdir wav_out_dir --output converted.ipynb

The above command extract image files and audio files, and store them to specified directories, and generate new ipynb file converted.ipynb. converted.ipynb includes same content as input.ipynb, but base64 encoded image and audio data are replaced to HTML tag refers to stored files directly like below.

  • image tag
    • <img src="${image_out_dir}/${n}.png" />
  • audio tag
    • <audio controls preload="none"><source src="${wav_out_dir}/${n}.wav" type="audio/wav" /></audio>

Also, you can use --img-prefix and --wav-prefix options. These options can change the path embeded in src attribute of output html like below(actual files are stored image_out_dir and wav_out_dir).

  • image tag
    • <img src="${img-prefix}/${n}.png" />
  • audio tag
    • <audio controls preload="none"><source src="${wav-prefix}/${n}.wav" type="audio/wav" /></audio>

show help

nbmediasplit --help

note

Unless you trust the notebook converted by nbmediasplit in jupyter, you can't load audio source because of html sanitization. To trust notebook in jupyterlab, go to command pallet in the left sidebar(on osx, type shift+cmd+c) and execute trust notebook, then you'll load audio source if the source path is correct.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nbmediasplit-0.2.0.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

nbmediasplit-0.2.0-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file nbmediasplit-0.2.0.tar.gz.

File metadata

  • Download URL: nbmediasplit-0.2.0.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.17 CPython/3.6.8 Darwin/19.4.0

File hashes

Hashes for nbmediasplit-0.2.0.tar.gz
Algorithm Hash digest
SHA256 bc2a0964ce8d34eb21fd9c7dcbbf78039d4f7b3a3c1b5b2308ef02fa1326f246
MD5 6071ec9c554992a504369ef1c0a7d69a
BLAKE2b-256 07b9b4bf0ea608da4cc7868875a64af38a2b71f6432c3c2b6351a16de44d41fc

See more details on using hashes here.

File details

Details for the file nbmediasplit-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: nbmediasplit-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.17 CPython/3.6.8 Darwin/19.4.0

File hashes

Hashes for nbmediasplit-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1121ec48246bd00fd7b0a39c1ceb68862eb052c448549bde5fe4ef4994e2ab8d
MD5 f49b542a9733b4c42b03d8c38af537b2
BLAKE2b-256 fde202c36a9c5322bd24b43b3d2abe7b5ea80827e793a6b2f35b9b5460a7b4f0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page